JAL-2418 source formatting
[jalview.git] / src / jalview / io / gff / InterProScanHelper.java
index e1334e1..c05593f 100644 (file)
@@ -73,8 +73,8 @@ public class InterProScanHelper extends Gff3Helper
   }
 
   /**
- * 
- */
+  * 
+  */
   @Override
   protected SequenceFeature buildSequenceFeature(String[] gff,
           Map<String, List<String>> attributes)
@@ -112,8 +112,8 @@ public class InterProScanHelper extends Gff3Helper
     SequenceOntologyI so = SequenceOntologyFactory.getInstance();
     String type = columns[TYPE_COL];
     if (so.isA(type, SequenceOntologyI.PROTEIN_MATCH)
-            || (".".equals(columns[SOURCE_COL]) && so.isA(type,
-                    SequenceOntologyI.POLYPEPTIDE)))
+            || (".".equals(columns[SOURCE_COL])
+                    && so.isA(type, SequenceOntologyI.POLYPEPTIDE)))
     {
       return true;
     }
@@ -125,7 +125,8 @@ public class InterProScanHelper extends Gff3Helper
    * GFF field 'ID' rather than the usual 'Target' :-O
    */
   @Override
-  protected String findTargetId(String target, Map<String, List<String>> set)
+  protected String findTargetId(String target,
+          Map<String, List<String>> set)
   {
     List<String> ids = set.get(ID);
     if (ids == null || ids.size() != 1)