diff options
| author | Paul Buetow <paul@buetow.org> | 2008-05-31 04:02:24 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-05-31 04:02:24 +0000 |
| commit | ddac26dd4d1aafeaa714f2eb77cbfc7d244a053f (patch) | |
| tree | 9cc6d909fbff40db9484f6668c52b36fd03d8802 /sources/prefs | |
| parent | f32bc24469d0e0d8e184c6a27fe04b13f59d6fb0 (diff) | |
bugfix!
Diffstat (limited to 'sources/prefs')
| -rw-r--r-- | sources/prefs/VSPrefs.java | 3 |
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(); |
