Author: ruschein
Date: 2011-05-11 08:38:40 -0700 (Wed, 11 May 2011)
New Revision: 25006
Modified:
csplugins/trunk/ucsd/ruschein/SimpleCytoscape3Plugin/MenuAction.java
Log:
Removed debugging code.
Modified: csplugins/trunk/ucsd/ruschein/SimpleCytoscape3Plugin/MenuAction.java
===================================================================
--- csplugins/trunk/ucsd/ruschein/SimpleCytoscape3Plugin/MenuAction.java
2011-05-10 22:55:47 UTC (rev 25005)
+++ csplugins/trunk/ucsd/ruschein/SimpleCytoscape3Plugin/MenuAction.java
2011-05-11 15:38:40 UTC (rev 25006)
@@ -18,7 +18,6 @@
}
public void actionPerformed(ActionEvent e) {
-System.err.println("+++++++++++++++++++++++++++++++++ Entering
actionPerformed()");
final CyNetwork currentNetwork =
adapter.getCyApplicationManager().getCurrentNetwork();
if (currentNetwork == null)
return;
@@ -27,13 +26,9 @@
for (CyNode node : currentNetwork.getNodeList()) {
if (currentNetwork.getNeighborList(node,
CyEdge.Type.ANY).isEmpty())
- {
-System.err.println("+++++++++++++++++++++++++++++++++ found one");
currentNetworkView.getNodeView(node).setVisualProperty(NODE_VISIBLE, false);
- }
}
-System.err.println("+++++++++++++++++++++++++++++++++ about to call
updateView()");
currentNetworkView.updateView();
}
}
--
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.