Author: jm
Date: 2011-06-14 11:51:59 -0700 (Tue, 14 Jun 2011)
New Revision: 25751
Modified:
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/session/SessionReaderImpl.java
Log:
Fixed typo in session reader (wrong index)
Modified:
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/session/SessionReaderImpl.java
===================================================================
---
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/session/SessionReaderImpl.java
2011-06-14 18:44:55 UTC (rev 25750)
+++
core3/io-impl/trunk/src/main/java/org/cytoscape/io/internal/read/session/SessionReaderImpl.java
2011-06-14 18:51:59 UTC (rev 25751)
@@ -387,7 +387,7 @@
String networkName = matcher.group(1);
String namespace = matcher.group(2);
Class<?> type = Class.forName(matcher.group(3));
- String title = URLDecoder.decode(matcher.group(3),
"UTF-8");
+ String title = URLDecoder.decode(matcher.group(4),
"UTF-8");
table.setTitle(title);
CyTableMetadataBuilder builder = new
CyTableMetadataBuilder()
.setCyTable(table)
--
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.