revert previous trivial change

This commit is contained in:
Eric House 2012-11-08 19:23:52 -08:00
parent 3b1f6a695f
commit 283045c649

View file

@ -333,8 +333,8 @@ public class ConnStatusHandler {
try {
ObjectInputStream ois =
new ObjectInputStream( new ByteArrayInputStream(bytes) );
Object obj = ois.readObject();
s_records = (HashMap<CommsConnType,SuccessRecord[]>)obj;
s_records =
(HashMap<CommsConnType,SuccessRecord[]>)ois.readObject();
// } catch ( java.io.StreamCorruptedException sce ) {
// DbgUtils.logf( "loadState: %s", sce.toString() );
// } catch ( java.io.OptionalDataException ode ) {