summaryrefslogtreecommitdiff
path: root/sources/prefs/VSPrefs.java
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2008-05-31 04:02:24 +0000
committerPaul Buetow <paul@buetow.org>2008-05-31 04:02:24 +0000
commitddac26dd4d1aafeaa714f2eb77cbfc7d244a053f (patch)
tree9cc6d909fbff40db9484f6668c52b36fd03d8802 /sources/prefs/VSPrefs.java
parentf32bc24469d0e0d8e184c6a27fe04b13f59d6fb0 (diff)
bugfix!
Diffstat (limited to 'sources/prefs/VSPrefs.java')
-rw-r--r--sources/prefs/VSPrefs.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/sources/prefs/VSPrefs.java b/sources/prefs/VSPrefs.java
index b0c9028..b4a9f73 100644
--- a/sources/prefs/VSPrefs.java
+++ b/sources/prefs/VSPrefs.java
@@ -957,7 +957,8 @@ public class VSPrefs implements Serializable {
* @throws IOException Signals that an I/O exception has occurred.
* @throws ClassNotFoundException the class not found exception
*/
- @SuppressWarnings("unchecked") public synchronized void readObject(ObjectInputStream objectInputStream)
+ @SuppressWarnings("unchecked")
+ public synchronized void readObject(ObjectInputStream objectInputStream)
throws IOException, ClassNotFoundException {
booleanPrefs = (HashMap<String,Boolean>) objectInputStream.readObject();
colorPrefs = (HashMap<String,Color>) objectInputStream.readObject();