From faaadb9c546e376dd8e8dd6553017d334aa0e0c4 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 14 Jun 2008 01:11:32 +0000 Subject: foo --- sources/prefs/VSPrefs.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'sources/prefs/VSPrefs.java') diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java index b6b8f42..413bc46 100644 --- a/sources/prefs/VSPrefs.java +++ b/sources/prefs/VSPrefs.java @@ -153,7 +153,7 @@ public class VSPrefs implements VSSerializable { * @param unit the unit */ public synchronized void initUnit(String key, String unit) { - if (unit == null || units.containsKey(key)) + if (unit == null /*|| units.containsKey(key)*/) return; units.put(key, unit); } @@ -166,7 +166,7 @@ public class VSPrefs implements VSSerializable { * @param descr the descr */ public synchronized void initDescription(String key, String descr) { - if (descr == null || descriptionPrefs.containsKey(key)) + if (descr == null /*|| descriptionPrefs.containsKey(key)*/) return; descriptionPrefs.put(key, descr); } @@ -884,7 +884,7 @@ public class VSPrefs implements VSSerializable { * @param val the val */ public synchronized void initString(String key, String val) { - if (!stringPrefs.containsKey(key)) + //if (!stringPrefs.containsKey(key)) stringPrefs.put(key, val); } -- cgit v1.2.3