Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Framework/Algorithms/inc/MantidAlgorithms/UnwrapMonitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
#pragma once

#include "MantidAPI/Algorithm.h"
#include "MantidAPI/DeprecatedAlgorithm.h"
#include "MantidAlgorithms/DllConfig.h"
#include "MantidHistogramData/HistogramX.h"
#include "MantidKernel/cow_ptr.h"
Expand All @@ -30,7 +29,7 @@ namespace Algorithms {
@author Russell Taylor, Tessella Support Services plc
@date 25/07/2008
*/
class MANTID_ALGORITHMS_DLL UnwrapMonitor final : public API::Algorithm, public API::DeprecatedAlgorithm {
class MANTID_ALGORITHMS_DLL UnwrapMonitor final : public API::Algorithm {
public:
UnwrapMonitor();
~UnwrapMonitor() override = default;
Expand Down
5 changes: 2 additions & 3 deletions Framework/Algorithms/src/UnwrapMonitor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,8 @@ using namespace Kernel;
using namespace API;

/// Default constructor
UnwrapMonitor::UnwrapMonitor() : m_conversionConstant(0.), m_inputWS(), m_LRef(0.), m_Tmin(0.), m_Tmax(0.), m_XSize(0) {
deprecatedDate("2025-04-16");
}
UnwrapMonitor::UnwrapMonitor()
: m_conversionConstant(0.), m_inputWS(), m_LRef(0.), m_Tmin(0.), m_Tmax(0.), m_XSize(0) {}

/// Initialisation method
void UnwrapMonitor::init() {
Expand Down

This file was deleted.