diff options
Diffstat (limited to 'source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java')
| -rw-r--r-- | source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java b/source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java index 6e91469..e8143be 100644 --- a/source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java +++ b/source/com/c2kernel/lifecycle/chooser/LDAPEntryChooser.java @@ -15,11 +15,11 @@ import com.c2kernel.lookup.DomainPath; import com.c2kernel.process.Gateway;
import com.c2kernel.utils.Logger;
-public class LDAPEntryChooser extends JComboBox
+public class LDAPEntryChooser extends JComboBox<String>
{
DomainPath mDomainPath = null;
- ArrayList<String> allItems = new ArrayList<>();
+ ArrayList<String> allItems = new ArrayList<String>();
public LDAPEntryChooser(DomainPath domPath, boolean editable)
{
|
