Skip to content
Snippets Groups Projects
Commit 27ee4d2c authored by Peterson, Peter's avatar Peterson, Peter
Browse files

Revert "Refs #10438. Added checGroups to IAlgorithm."

This reverts commit 8e55e36c.
parent a2cd39f1
No related branches found
No related tags found
No related merge requests found
......@@ -88,7 +88,6 @@ namespace Mantid
AlgorithmID getAlgorithmID() const;
void initialize();
bool checkGroups();
std::map<std::string, std::string> validateInputs();
bool execute();
void executeAsChildAlg() { throw std::runtime_error("Not implemented."); }
......
......@@ -100,8 +100,6 @@ public:
*/
virtual void initialize() = 0;
virtual bool checkGroups() = 0;
/// Method checking errors on ALL the inputs, before execution. For use mostly in dialogs.
virtual std::map<std::string, std::string> validateInputs() = 0;
......
......@@ -56,12 +56,6 @@ namespace Mantid
return AlgorithmID(const_cast<AlgorithmProxy*>(this));
}
bool AlgorithmProxy::checkGroups()
{
if (!m_alg) createConcreteAlg();
return m_alg->checkGroups();
}
/** Perform whole-input validation */
std::map<std::string, std::string> AlgorithmProxy::validateInputs()
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment