Author: slotia
Date: 2009-04-02 08:37:10 -0700 (Thu, 02 Apr 2009)
New Revision: 16433
Modified:
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/AbstractNetworkReader.java
Log:
Fixed potential bug in AbstractNetworkReader where reading would cancel even
after calling setInputStream()
Modified:
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/AbstractNetworkReader.java
===================================================================
---
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/AbstractNetworkReader.java
2009-04-02 15:32:27 UTC (rev 16432)
+++
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/AbstractNetworkReader.java
2009-04-02 15:37:10 UTC (rev 16433)
@@ -43,6 +43,7 @@
if (is == null)
throw new NullPointerException("Input stream is null");
inputStream = is;
+ cancel = false;
}
public void cancel()
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en
-~----------~----~----~----~------~----~------~--~---