From ecdeab2258fc12a3b16337eff49a9b42536d3076 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Mon, 2 Jun 2008 21:35:32 +0000 Subject: save/open works!? --- sources/core/VSProcess.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sources/core/VSProcess.java') 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(); -- cgit v1.2.3