JAL-2050 make SequenceFeature.score final, adjust constructor calls
[jalview.git] / src / jalview / datamodel / xdb / embl / EmblEntry.java
index 6f9c884..c3d4e66 100644 (file)
@@ -594,8 +594,7 @@ public class EmblEntry
   protected SequenceFeature makeCdsFeature(String type, String desc,
           int begin, int end, String group, Map<String, String> vals)
   {
-    SequenceFeature sf = new SequenceFeature(type, desc, begin, end,
-            Float.NaN, group);
+    SequenceFeature sf = new SequenceFeature(type, desc, begin, end, group);
 
     if (!vals.isEmpty())
     {