Fix a stupid mistake that will bite new installs. [#862 tagged:committed]

by mrs, 09 Aug, 2009 06:57 AM
1000 1012  
125125   public static void kill(String key) {
126126     Set ks;
127127     if(key.startsWith("temp.")) {
128       if(mTempProps == null) return;
128129       ks = mTempProps.keySet();
129130     } else {
130131       ks = soleProperty.keySet();
------
574575       System.out.println("Query: " + query);
575576     }
576577     if(query.startsWith("temp.")) {
578       if(mTempProps == null) return null;
577579       return mTempProps.getProperty(query, null);
578580     }
579581     return soleProperty.getProperty(query, null);