Author: kono
Date: 2010-07-28 15:29:50 -0700 (Wed, 28 Jul 2010)
New Revision: 21064
Modified:
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/impl/ShapePaletteInfoGeneratorImpl.java
Log:
Missing generics parameter added.
Modified:
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/impl/ShapePaletteInfoGeneratorImpl.java
===================================================================
---
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/impl/ShapePaletteInfoGeneratorImpl.java
2010-07-28 22:22:48 UTC (rev 21063)
+++
coreplugins/trunk/CytoscapeEditor2/src/cytoscape/editor/impl/ShapePaletteInfoGeneratorImpl.java
2010-07-28 22:29:50 UTC (rev 21064)
@@ -175,7 +175,7 @@
if (calc != null) {
// Vector edgeMappings = calc.getMappings();
// for (int i = 0; i < edgeMappings.size(); i++) {
- for (ObjectMapping possibleMatch :
(Vector<ObjectMapping>) calc.getMappings()) {
+ for (ObjectMapping possibleMatch :
(Vector<ObjectMapping<?>>) calc.getMappings()) {
if ((possibleMatch instanceof DiscreteMapping)
&&
controllingAttribute.equals(((DiscreteMapping) possibleMatch)
.getControllingAttributeName())) {
--
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.