House keeping
[jalview.git] / src / jalview / io / HtmlFile.java
index ee1b151..77da038 100644 (file)
@@ -95,7 +95,8 @@ public class HtmlFile extends AlignFile
     if (jsonSeqFeatures != null)
     {
       seqFeatures = new SequenceFeature[jsonSeqFeatures.size()];
-      for (Iterator<JSONObject> seqFeatureItr = jsonSeqFeatures.iterator(); seqFeatureItr
+      for (@SuppressWarnings("unchecked")
+      Iterator<JSONObject> seqFeatureItr = jsonSeqFeatures.iterator(); seqFeatureItr
               .hasNext();)
       {
 
@@ -105,7 +106,7 @@ public class HtmlFile extends AlignFile
         Long end = (Long) jsonFeature.get("xEnd");
         String type = (String) jsonFeature.get("text");
 
-        String color = (String) jsonFeature.get("fillColor");
+        // String color = (String) jsonFeature.get("fillColor");
 
         sequenceFeature.setBegin(begin.intValue());
         sequenceFeature.setEnd(end.intValue());