|
From: CVS C. to T. <the...@li...> - 2011-01-16 13:40:43
|
Revision: 607
http://themis.svn.sourceforge.net/themis/?rev=607&view=rev
Author: mark_hellegers
Date: 2011-01-16 13:40:37 +0000 (Sun, 16 Jan 2011)
Log Message:
-----------
Removed debugging output.
Modified Paths:
--------------
trunk/themis/common/BaseEntry.cpp
Modified: trunk/themis/common/BaseEntry.cpp
===================================================================
--- trunk/themis/common/BaseEntry.cpp 2011-01-16 03:15:07 UTC (rev 606)
+++ trunk/themis/common/BaseEntry.cpp 2011-01-16 13:40:37 UTC (rev 607)
@@ -33,8 +33,6 @@
*/
-#include <stdio.h>
-
// Themis headers
#include "BaseEntry.hpp"
@@ -67,8 +65,6 @@
BaseEntry * BaseEntry :: getEntry(int32 aId) {
- printf("Trying to find %ld\n", aId);
-
BaseEntry * result = NULL;
// browse through the entry list to find the UrlEntry with the matching id
@@ -86,13 +82,6 @@
}
}
- if (result == NULL) {
- printf("Failed to find %ld\n", aId);
- }
- else {
- printf("Found %ld\n", aId);
- }
-
return result;
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|