summaryrefslogtreecommitdiff
path: root/java/src/IceGridGUI/Application/ServiceInstanceEditor.java
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2013-07-04 22:21:31 +0200
committerJose <jose@zeroc.com>2013-07-04 22:21:31 +0200
commitfc7fc8af52548043dca3b3ee9ddbccaf1477008c (patch)
treef6a45c482eb1bef1470b175aed53bba186c790a0 /java/src/IceGridGUI/Application/ServiceInstanceEditor.java
parentFixed ICE-5346 - return empty map rather than no maps for metrics view if the... (diff)
downloadice-fc7fc8af52548043dca3b3ee9ddbccaf1477008c.tar.bz2
ice-fc7fc8af52548043dca3b3ee9ddbccaf1477008c.tar.xz
ice-fc7fc8af52548043dca3b3ee9ddbccaf1477008c.zip
Fixed ICE-5344 - IceGrid Admin without JavaFX?
Diffstat (limited to 'java/src/IceGridGUI/Application/ServiceInstanceEditor.java')
-rw-r--r--java/src/IceGridGUI/Application/ServiceInstanceEditor.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/IceGridGUI/Application/ServiceInstanceEditor.java b/java/src/IceGridGUI/Application/ServiceInstanceEditor.java
index bd4c0a80668..c70c1657392 100644
--- a/java/src/IceGridGUI/Application/ServiceInstanceEditor.java
+++ b/java/src/IceGridGUI/Application/ServiceInstanceEditor.java
@@ -27,6 +27,7 @@ import com.jgoodies.forms.layout.CellConstraints;
import IceGrid.*;
import IceGridGUI.*;
+@SuppressWarnings("unchecked")
class ServiceInstanceEditor extends CommunicatorChildEditor
{
ServiceInstanceEditor()
@@ -224,7 +225,7 @@ class ServiceInstanceEditor extends CommunicatorChildEditor
}
}
- private JComboBox<Object> _template = new JComboBox<Object>();
+ private JComboBox _template = new JComboBox();
private JButton _templateButton;
private ParameterValuesField _parameters;
private ListTextField _propertySets = new ListTextField(20);