JAL-2416 public constant for space gap character
authorgmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 20 Feb 2017 10:36:41 +0000 (10:36 +0000)
committergmungoc <g.m.carstairs@dundee.ac.uk>
Mon, 20 Feb 2017 10:36:41 +0000 (10:36 +0000)
src/jalview/util/Comparison.java

index 1326647..6c2fb4b 100644 (file)
@@ -34,11 +34,11 @@ public class Comparison
 
   private static final int TO_UPPER_CASE = 'a' - 'A';
 
-  private static final char GAP_SPACE = ' ';
+  public static final char GAP_SPACE = ' ';
 
-  private static final char GAP_DOT = '.';
+  public static final char GAP_DOT = '.';
 
-  private static final char GAP_DASH = '-';
+  public static final char GAP_DASH = '-';
 
   public static final String GapChars = new String(new char[] { GAP_SPACE,
       GAP_DOT, GAP_DASH });