diff --git a/lib/ApplicationServer/ApplicationServer.h b/lib/ApplicationServer/ApplicationServer.h index cc3105e046..5e745a54e4 100644 --- a/lib/ApplicationServer/ApplicationServer.h +++ b/lib/ApplicationServer/ApplicationServer.h @@ -330,12 +330,6 @@ namespace triagens { /// @{ //////////////////////////////////////////////////////////////////////////////// -#if 0 -public: -void guck() { - _options.guck(); -} -#endif private: //////////////////////////////////////////////////////////////////////////////// diff --git a/lib/Basics/ProgramOptions.h b/lib/Basics/ProgramOptions.h index e5f3183238..f4b86c7a02 100644 --- a/lib/Basics/ProgramOptions.h +++ b/lib/Basics/ProgramOptions.h @@ -133,30 +133,6 @@ namespace triagens { string lastError (); -#if 0 -void guck () { - vector::iterator i; - map::iterator j; - - cout << "OPTGUCK:" << endl; - for (i = _options.begin(); i != _options.end(); ++i) { - j = _valuesString.find(*i); - if (j == _valuesString.end()) { - cout << "OPT: " << *i << " not in _valuesString" << endl; - } - else if (0 == j->second) { - cout << "OPT: " << *i << " is 0" << endl; - } - else if (0 == *(j->second)) { - cout << "OPT: " << *i << " is *0" << endl; - } - else { - cout << "OPT: " << *i << " with value " << *(j->second) << endl; - } - } -} -#endif - //////////////////////////////////////////////////////////////////////////////// /// @} ////////////////////////////////////////////////////////////////////////////////