diff options
-rw-r--r-- | src/CommandParser.cc | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/CommandParser.cc b/src/CommandParser.cc index aebb99a..baa5e7a 100644 --- a/src/CommandParser.cc +++ b/src/CommandParser.cc | |||
@@ -20,14 +20,13 @@ | |||
20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 20 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
21 | // DEALINGS IN THE SOFTWARE. | 21 | // DEALINGS IN THE SOFTWARE. |
22 | 22 | ||
23 | // $Id: CommandParser.cc,v 1.3 2003/07/01 09:04:52 fluxgen Exp $ | 23 | // $Id: CommandParser.cc,v 1.4 2003/08/11 13:47:51 fluxgen Exp $ |
24 | 24 | ||
25 | #include "CommandParser.hh" | 25 | #include "CommandParser.hh" |
26 | 26 | ||
27 | #include "StringUtil.hh" | 27 | #include "StringUtil.hh" |
28 | 28 | ||
29 | #include <vector> | 29 | #include <vector> |
30 | #include <iostream> | ||
31 | using namespace std; | 30 | using namespace std; |
32 | 31 | ||
33 | namespace { | 32 | namespace { |
@@ -74,10 +73,6 @@ FbTk::Command *CommandParser::parseLine(const std::string &line) { | |||
74 | } | 73 | } |
75 | 74 | ||
76 | // now we have parsed command and arguments | 75 | // now we have parsed command and arguments |
77 | #ifdef DEBUG | ||
78 | cerr<<__FILE__<<"("<<__FUNCTION__<<"): command = ["<< | ||
79 | command<<"] arguments=["<<arguments<<"]"<<endl; | ||
80 | #endif // DEBUG | ||
81 | 76 | ||
82 | command = FbTk::StringUtil::toLower(command); | 77 | command = FbTk::StringUtil::toLower(command); |
83 | 78 | ||