From b6ccb49882bdd910cb548c29f66f115586eca1da Mon Sep 17 00:00:00 2001
From: tcarver <tjc>
Date: Thu, 22 Aug 2013 10:57:56 +0100
Subject: [PATCH] simplify to one constructor

---
 uk/ac/sanger/artemis/components/FeatureEdit.java | 13 +------------
 1 file changed, 1 insertion(+), 12 deletions(-)

diff --git a/uk/ac/sanger/artemis/components/FeatureEdit.java b/uk/ac/sanger/artemis/components/FeatureEdit.java
index bf021cabf..92ffde39f 100644
--- a/uk/ac/sanger/artemis/components/FeatureEdit.java
+++ b/uk/ac/sanger/artemis/components/FeatureEdit.java
@@ -174,24 +174,13 @@ public class FeatureEdit extends JPanel
                      final GotoEventSource goto_event_source,
                      final JFrame frame) 
   {
-    this(edit_feature, entry_group, selection, 
-         goto_event_source, frame, 
-         edit_feature.getEntry().getEntryInformation());
-  }
-  
-  public FeatureEdit(final Feature edit_feature,
-      final EntryGroup entry_group,
-      final Selection selection,
-      final GotoEventSource goto_event_source,
-      final JFrame frame, final EntryInformation entry_information) 
-  {
-    this.entry_information = entry_information;
     this.frame = frame;
     this.edit_feature = edit_feature;
     this.edit_entry   = edit_feature.getEntry();
     this.entry_group  = entry_group;
     this.selection    = selection;
     this.goto_event_source = goto_event_source;
+    this.entry_information = edit_feature.getEntry().getEntryInformation();
 
     setLayout(new BorderLayout());
     createComponents();
-- 
GitLab