mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-01 06:19:57 +01:00
revert previous trivial change
This commit is contained in:
parent
3b1f6a695f
commit
283045c649
1 changed files with 2 additions and 2 deletions
|
@ -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 ) {
|
||||
|
|
Loading…
Reference in a new issue