debugging DatabaseCache
authoridfx <idfx>
Wed, 6 Feb 2002 19:46:59 +0000 (19:46 +0000)
committeridfx <idfx>
Wed, 6 Feb 2002 19:46:59 +0000 (19:46 +0000)
source/mir/storage/DatabaseCache.java

index 0e7fa52..9c3659b 100755 (executable)
@@ -53,7 +53,9 @@ public class DatabaseCache {
   
   public Object get(String key){
     for(int i = 0; i<_cache.size(); i++){
+      System.out.println("test");
       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();
     }
     return null;