From 15e3e64d6867385616f0ed5b01e2f7ed8fc8c5eb Mon Sep 17 00:00:00 2001
From: Walter Van Herck <w.van.herck@fz-juelich.de>
Date: Mon, 15 Jan 2018 15:24:40 +0100
Subject: [PATCH] Remove unused methods

---
 Core/Computation/DWBAComputation.h     | 2 --
 Core/Computation/SpecularComputation.h | 2 --
 Core/Simulation/Simulation.cpp         | 2 +-
 3 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/Core/Computation/DWBAComputation.h b/Core/Computation/DWBAComputation.h
index 1d1b0e39147..4243081ed8d 100644
--- a/Core/Computation/DWBAComputation.h
+++ b/Core/Computation/DWBAComputation.h
@@ -39,8 +39,6 @@ public:
                     std::vector<SimulationElement>::iterator end_it);
     ~DWBAComputation();
 
-    void run();
-
 private:
     void runProtected() override;
     std::unique_ptr<IFresnelMap> createFresnelMap();
diff --git a/Core/Computation/SpecularComputation.h b/Core/Computation/SpecularComputation.h
index 6aac5497231..d8fdd9e1964 100644
--- a/Core/Computation/SpecularComputation.h
+++ b/Core/Computation/SpecularComputation.h
@@ -40,8 +40,6 @@ public:
                         std::vector<SimulationElement>::iterator end_it);
     virtual ~SpecularComputation();
 
-    void run();
-
 private:
     void runProtected() override;
     std::unique_ptr<IFresnelMap> createFresnelMap();
diff --git a/Core/Simulation/Simulation.cpp b/Core/Simulation/Simulation.cpp
index 9b2c8d02068..68a9735a1e5 100644
--- a/Core/Simulation/Simulation.cpp
+++ b/Core/Simulation/Simulation.cpp
@@ -336,4 +336,4 @@ void runComputations(std::vector<std::unique_ptr<IComputation>> computations)
         "Messages: "
         + StringUtils::join(failure_messages, " --- "));
 }
-}
+} // unnamed namespace
-- 
GitLab