summaryrefslogtreecommitdiff
path: root/source/com/c2kernel/gui/MainFrame.java
diff options
context:
space:
mode:
Diffstat (limited to 'source/com/c2kernel/gui/MainFrame.java')
-rw-r--r--[-rwxr-xr-x]source/com/c2kernel/gui/MainFrame.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/com/c2kernel/gui/MainFrame.java b/source/com/c2kernel/gui/MainFrame.java
index 99a1fab..e561f1f 100755..100644
--- a/source/com/c2kernel/gui/MainFrame.java
+++ b/source/com/c2kernel/gui/MainFrame.java
@@ -267,7 +267,7 @@ public class MainFrame extends javax.swing.JFrame {
}
public static JComboBox getExecutionPlugins() {
- JComboBox plugins = new JComboBox();
+ JComboBox<Executor> plugins = new JComboBox<Executor>();
// create execution selector
Executor defaultExecutor = new DefaultExecutor();
plugins.addItem(defaultExecutor);