Merge branch 'j2s/develop-toc' into j2s/develop
[jalview.git] / src / jalview / commands / RemoveGapsCommand.java
index e49d42b..3a485c8 100644 (file)
@@ -1,6 +1,6 @@
 /*
- * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2b1)
- * Copyright (C) 2014 The Jalview Authors
+ * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
+ * Copyright (C) $$Year-Rel$$ The Jalview Authors
  * 
  * This file is part of Jalview.
  * 
@@ -41,6 +41,7 @@ package jalview.commands;
 
 import jalview.datamodel.AlignmentI;
 import jalview.datamodel.SequenceI;
+import jalview.util.Comparison;
 
 public class RemoveGapsCommand extends EditCommand
 {
@@ -92,7 +93,7 @@ public class RemoveGapsCommand extends EditCommand
       {
         delete = true;
 
-        if (!jalview.util.Comparison.isGap(sequence[j]))
+        if (!Comparison.isGap(sequence[j]))
         {
           if (delete)
           {