summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/graph/view/EditorToolBar.java
diff options
context:
space:
mode:
authorabranson <andrew.branson@cern.ch>2011-09-07 15:41:24 +0200
committerabranson <andrew.branson@cern.ch>2011-09-07 15:41:24 +0200
commit53a7566dcb7c0dd18cd17f84a3ba845bcd4216a1 (patch)
treebeac3c6e0d13f8224872eb612aeda02c79cb546a /source/com/c2kernel/graph/view/EditorToolBar.java
parent379ed8a0e133bee650e0acb24f6b743f657a50d0 (diff)
Rollback to Java 1.6 compliance
Diffstat (limited to 'source/com/c2kernel/graph/view/EditorToolBar.java')
-rw-r--r--source/com/c2kernel/graph/view/EditorToolBar.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/com/c2kernel/graph/view/EditorToolBar.java b/source/com/c2kernel/graph/view/EditorToolBar.java
index cc7ab41..f84b084 100644
--- a/source/com/c2kernel/graph/view/EditorToolBar.java
+++ b/source/com/c2kernel/graph/view/EditorToolBar.java
@@ -57,9 +57,9 @@ public class EditorToolBar extends Box implements Printable
}
}
// Vertex types and ids
- protected JComboBox<TypeNameAndConstructionInfo> mVertexTypeBox = new JComboBox<TypeNameAndConstructionInfo>();
+ protected JComboBox mVertexTypeBox = new JComboBox();
// Edge types and ids
- protected JComboBox<TypeNameAndConstructionInfo> mEdgeTypeBox = new JComboBox<TypeNameAndConstructionInfo>();
+ protected JComboBox mEdgeTypeBox = new JComboBox();
// Mode buttons
protected ButtonGroup mModeButtonGroup = new ButtonGroup();
protected JToggleButton mVertexModeButton = new JToggleButton(Resource.getImageResource("graph/newvertex.png"));