From 2198ec90c51775f99e0d42488d051b8638d2e678 Mon Sep 17 00:00:00 2001 From: idfx Date: Wed, 6 Feb 2002 19:58:23 +0000 Subject: [PATCH] debugging DatabaseCache --- source/mir/storage/DatabaseCache.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/mir/storage/DatabaseCache.java b/source/mir/storage/DatabaseCache.java index 68e512db..dd1fcf0a 100755 --- a/source/mir/storage/DatabaseCache.java +++ b/source/mir/storage/DatabaseCache.java @@ -52,8 +52,8 @@ public class DatabaseCache { } public Object get(String key){ + System.out.println(_cache.size() +" "+ _counter); for(int i = 0; i<_cache.size(); i++){ - System.out.println("test"+((Entry)_cache.get(i)).getKey(key)); if( ((Entry)_cache.get(i)).getKey(key).equals(key) ) System.out.println("test2: "+((Entry)_cache.get(i)).getKey(key)); return ((Entry)_cache.get(i)).getValue(); -- 2.11.0