From 06f7ee202e8413fca6bd1da97579700acbd05576 Mon Sep 17 00:00:00 2001 From: Lanny91 Date: Wed, 8 Feb 2017 10:08:18 +0000 Subject: [PATCH] Revert "Add function to say whether or not a module exists in application class" This reverts commit 522f6bf91ae85ef33aea2dc51ec77b545944242a. --- extras/Hadrons/Application.cc | 5 ----- extras/Hadrons/Application.hpp | 1 - 2 files changed, 6 deletions(-) diff --git a/extras/Hadrons/Application.cc b/extras/Hadrons/Application.cc index c1d9d722..62674f30 100644 --- a/extras/Hadrons/Application.cc +++ b/extras/Hadrons/Application.cc @@ -91,11 +91,6 @@ const Application::GlobalPar & Application::getPar(void) return par_; } -bool Application::hasModule(const std::string name) -{ - return env().hasModule(name); -} - // execute ///////////////////////////////////////////////////////////////////// void Application::run(void) { diff --git a/extras/Hadrons/Application.hpp b/extras/Hadrons/Application.hpp index 2e3d7997..fce9b6eb 100644 --- a/extras/Hadrons/Application.hpp +++ b/extras/Hadrons/Application.hpp @@ -86,7 +86,6 @@ public: void createModule(const std::string name); template void createModule(const std::string name, const typename M::Par &par); - bool hasModule(const std::string name); // execute void run(void); // XML parameter file I/O