Author: scooter
Date: 2011-06-09 19:58:25 -0700 (Thu, 09 Jun 2011)
New Revision: 25706
Modified:
csplugins/trunk/ucsf/scooter/commandTool/src/commandTool/handlers/CommandHandler.java
Log:
Ignore "_" as a separator.
Modified:
csplugins/trunk/ucsf/scooter/commandTool/src/commandTool/handlers/CommandHandler.java
===================================================================
---
csplugins/trunk/ucsf/scooter/commandTool/src/commandTool/handlers/CommandHandler.java
2011-06-10 01:54:01 UTC (rev 25705)
+++
csplugins/trunk/ucsf/scooter/commandTool/src/commandTool/handlers/CommandHandler.java
2011-06-10 02:58:25 UTC (rev 25706)
@@ -145,11 +145,13 @@
// We don't really want to parse numbers as numbers...
st.ordinaryChar('/');
+ st.ordinaryChar('_');
st.ordinaryChar('-');
st.ordinaryChar('.');
st.ordinaryChars('0', '9');
st.wordChars('/', '/');
+ st.wordChars('_', '_');
st.wordChars('-', '-');
st.wordChars('.', '.');
st.wordChars('0', '9');
--
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.