(refs #1375)Remove debug log

This commit is contained in:
Naoki Takezoe
2016-12-19 19:39:20 +09:00
parent 623c53e169
commit ea0f35a0a1

View File

@@ -185,7 +185,6 @@ object JGitUtil {
cache.forEach(new Consumer[CacheEntry[String, Int]] {
override def accept(entry: CacheEntry[String, Int]): Unit = {
if(entry.getKey.startsWith(keyPrefix)){
println("[remove]" + entry.getKey)
cache.remove(entry.getKey)
}
}
@@ -209,7 +208,6 @@ object JGitUtil {
commitCount
}
} else {
println("[hit]" + entry.getKey)
entry.getValue
}
}