about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/libutil/hash.cc1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libutil/hash.cc b/src/libutil/hash.cc
index 372826f31d2d..70604a50a342 100644
--- a/src/libutil/hash.cc
+++ b/src/libutil/hash.cc
@@ -257,7 +257,6 @@ Hash hashString(HashType ht, const string & s)
     start(ht, ctx);
     update(ht, ctx, (const unsigned char *) s.c_str(), s.length());
     finish(ht, ctx, hash.hash);
-    //printMsg(lvlError, format("hashString %1% --> %2%:\n%3%\n===========END======") % s.size() % printHash(hash) % s);
     return hash;
 }