JAL-2744 indent CSQ lines to catch the eye
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 29 Sep 2017 15:10:18 +0000 (16:10 +0100)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Fri, 29 Sep 2017 15:10:18 +0000 (16:10 +0100)
src/jalview/datamodel/SequenceFeature.java

index 6834341..0352918 100755 (executable)
@@ -587,9 +587,10 @@ public class SequenceFeature implements FeatureLocationI
           /*
            * split selected INFO data by delimiter over multiple lines
            */
-          sb.append(key).append("\n");
+          sb.append(key).append("=\n  ");
           String delimiter = INFO_KEYS.get(key);
-          sb.append(entry.getValue().toString().replace(delimiter, "\n"));
+          String value = entry.getValue().toString();
+          sb.append(value.replace(delimiter, "\n  "));
         }
         else
         {