JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / datamodel / SequenceFeature.java
index bbf1b45..1f498b9 100755 (executable)
@@ -102,8 +102,8 @@ public class SequenceFeature implements FeatureLocationI
    */
   public SequenceFeature(SequenceFeature cpy)
   {
-    this(cpy, cpy.getBegin(), cpy.getEnd(), cpy.getFeatureGroup(), cpy
-            .getScore());
+    this(cpy, cpy.getBegin(), cpy.getEnd(), cpy.getFeatureGroup(),
+            cpy.getScore());
   }
 
   /**
@@ -377,10 +377,10 @@ public class SequenceFeature implements FeatureLocationI
 
   /**
    * Answers the value of the specified attribute as string, or null if no such
-   * value. If more than one attribute name is provided, tries to resolve as keys
-   * to nested maps. For example, if attribute "CSQ" holds a map of key-value
-   * pairs, then getValueAsString("CSQ", "Allele") returns the value of "Allele"
-   * in that map.
+   * value. If more than one attribute name is provided, tries to resolve as
+   * keys to nested maps. For example, if attribute "CSQ" holds a map of
+   * key-value pairs, then getValueAsString("CSQ", "Allele") returns the value
+   * of "Allele" in that map.
    * 
    * @param key
    * @return
@@ -605,9 +605,8 @@ public class SequenceFeature implements FeatureLocationI
     sb.append("<br>");
     sb.append("<table>");
     String name = mf == null ? seqName : mf.getLinkedSequenceName();
-    sb.append(String.format(ROW_DATA, "Location", name,
-            begin == end ? begin
-                    : begin + (isContactFeature() ? ":" : "-") + end));
+    sb.append(String.format(ROW_DATA, "Location", name, begin == end ? begin
+            : begin + (isContactFeature() ? ":" : "-") + end));
 
     String consequence = "";
     if (mf != null)
@@ -664,8 +663,8 @@ public class SequenceFeature implements FeatureLocationI
           sm.putAll(values);
           for (Entry<?, ?> e : sm.entrySet())
           {
-            sb.append(String.format(ROW_DATA, key, e.getKey().toString(), e
-                    .getValue().toString()));
+            sb.append(String.format(ROW_DATA, key, e.getKey().toString(),
+                    e.getValue().toString()));
           }
         }
         else
@@ -679,8 +678,8 @@ public class SequenceFeature implements FeatureLocationI
           String s = entry.getValue().toString();
           if (isValueInteresting(key, s, metadata))
           {
-            sb.append(String.format(ROW_DATA, key, attDesc == null ? ""
-                    : attDesc, s));
+            sb.append(String.format(ROW_DATA, key,
+                    attDesc == null ? "" : attDesc, s));
           }
         }
       }
@@ -718,9 +717,8 @@ public class SequenceFeature implements FeatureLocationI
     }
 
     FeatureAttributeType attType = metadata.getAttributeType(key);
-    if (attType != null
-            && (attType == FeatureAttributeType.Float || attType
-                    .equals(FeatureAttributeType.Integer)))
+    if (attType != null && (attType == FeatureAttributeType.Float
+            || attType.equals(FeatureAttributeType.Integer)))
     {
       try
       {