From 92731ea995f6c71d5f23905b4ed4d164b0c9f147 Mon Sep 17 00:00:00 2001 From: tedjk Date: Mon, 23 Feb 2015 09:31:23 +0100 Subject: [PATCH] cleaning up --- juci/api.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/juci/api.cc b/juci/api.cc index ee38351..83f8c54 100644 --- a/juci/api.cc +++ b/juci/api.cc @@ -37,8 +37,7 @@ std::string libjuci::ApiServiceProvider::GetWord() { libjuci::IterToWordStart(word_start); libjuci::IterToWordEnd(word_end); - std::cout <<"start: " << word_start << std::endl << "end: " << word_end << std::endl; - if(word_start < word_end) { + if(word_start < word_end) { std::string word = buffer->get_text(word_start, word_end); return word; }