- converted NamedArea element
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / ui / campanula / basicFields / EntitySelectionFieldController.java
index e108eebe49c501ff027a00a725138511f29178b1..779b3deb1d06b19a558510eb58d3fde71fa99206 100644 (file)
@@ -107,7 +107,7 @@ public class EntitySelectionFieldController<T extends ICdmBase> extends Abstract
      * @param <T>
      *            a T object.
      */
-    public EntitySelectionFieldController(EntitySelectionField entitySelectionField, CdmFormFactory formFactory, ConversationHolder conversation, ICdmFormElement parentElement, String labelString, T entity, int mode, int style) {
+    public EntitySelectionFieldController(EntitySelectionField entitySelectionField, CdmFormFactory formFactory, ConversationHolder conversation, ICdmFormElement parentElement, String labelString, T entity, int mode) {
         super(formFactory, parentElement);
 
         setPropertyChangeListeners(formFactory.getPropertyChangeListeners());
@@ -130,8 +130,8 @@ public class EntitySelectionFieldController<T extends ICdmBase> extends Abstract
         setEntity(entity);
     }
 
-    public EntitySelectionFieldController(EntitySelectionField entitySelectionField, CdmFormFactory formFactory, ConversationHolder conversation, ICdmFormElement parentElement, Class<T> clazz, String labelString, T entity, int mode, int style) {
-        this(entitySelectionField, formFactory, conversation, parentElement, labelString, entity, mode, style);
+    public EntitySelectionFieldController(EntitySelectionField entitySelectionField, CdmFormFactory formFactory, ConversationHolder conversation, ICdmFormElement parentElement, Class<T> clazz, String labelString, T entity, int mode) {
+        this(entitySelectionField, formFactory, conversation, parentElement, labelString, entity, mode);
         this.clazz = clazz;
     }