diff options
| author | Paul Buetow <paul@buetow.org> | 2008-06-02 21:35:32 +0000 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2008-06-02 21:35:32 +0000 |
| commit | ecdeab2258fc12a3b16337eff49a9b42536d3076 (patch) | |
| tree | 4bd4413132d9a3d29bb22a80608de8a35a9a717d /sources/core/VSProcess.java | |
| parent | adca28d981ef8c9d09c5ba0a6e56b2145a14c60f (diff) | |
save/open works!?
Diffstat (limited to 'sources/core/VSProcess.java')
| -rw-r--r-- | sources/core/VSProcess.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sources/core/VSProcess.java b/sources/core/VSProcess.java index 7c4ac41..c6456de 100644 --- a/sources/core/VSProcess.java +++ b/sources/core/VSProcess.java @@ -1021,8 +1021,8 @@ public class VSProcess extends VSPrefs implements VSSerializable { super.serialize(serialize, objectOutputStream); if (VSSerialize.DEBUG) - System.out.println("Serializing: VSProcess (num: " + processNum - + "; id: " + processID + ")"); + System.out.println("Serializing: VSProcess (num: " + processNum + + "; id: " + processID + ")"); objectOutputStream.writeObject(new Integer(processID)); objectOutputStream.writeObject(new Integer(protocolsToReset.size())); @@ -1041,13 +1041,13 @@ public class VSProcess extends VSPrefs implements VSSerializable { ObjectInputStream objectInputStream) throws IOException, ClassNotFoundException { super.deserialize(serialize, objectInputStream); - updateFromPrefs(); + updateFromPrefs(); if (VSSerialize.DEBUG) System.out.println("Deserializing: VSProcess"); this.processID = ((Integer) - objectInputStream.readObject()).intValue(); + objectInputStream.readObject()).intValue(); int numProtocols = ((Integer) objectInputStream.readObject()).intValue(); |
