summaryrefslogtreecommitdiff
path: root/src/configuration.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-06 00:17:02 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-06 00:17:02 +0000
commitbee1e255ef9851b2d530064f156652c7874b48b1 (patch)
treea35a971556217e62c1ee3cfcc4b3db3dfd187e9d /src/configuration.cpp
parentb15fcd7592e33b5a837047d0810e5b523fa4a7ad (diff)
downloadmana-client-bee1e255ef9851b2d530064f156652c7874b48b1.tar.gz
mana-client-bee1e255ef9851b2d530064f156652c7874b48b1.tar.bz2
mana-client-bee1e255ef9851b2d530064f156652c7874b48b1.tar.xz
mana-client-bee1e255ef9851b2d530064f156652c7874b48b1.zip
Whoops left in two debug prints.
Diffstat (limited to 'src/configuration.cpp')
-rw-r--r--src/configuration.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 0a1bd551..bd8c3669 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -17,6 +17,8 @@
* You should have received a copy of the GNU General Public License
* along with The Mana World; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ *
+ * $Id$
*/
@@ -46,7 +48,6 @@ void Configuration::init(std::string filename) {
while (inFile.good()) {
getline(inFile, inBuffer, '\n');
- std::cout << inBuffer << std::endl;
if (inBuffer.substr(0, 1) != INI_COMMENTER) {
// Replace spaces with void
@@ -57,7 +58,6 @@ void Configuration::init(std::string filename) {
position = inBuffer.find(INI_DELIMITER, 0);
if (position != std::string::npos) {
- std::cout << inBuffer << std::endl;
std::string key = inBuffer.substr(0, position);
if (inBuffer.length() > position + 1) {