JAL-1551 spotlessApply
[jalview.git] / src / jalview / datamodel / ContactListProviderI.java
index 51f3126..d6e9ba9 100644 (file)
@@ -28,18 +28,22 @@ public interface ContactListProviderI
    */
   double getContactAt(int column);
 
-
   /**
-   * Return positions in local reference corresponding to cStart and cEnd in matrix data. Positions are base 1 column indices for sequence associated matrices.
+   * Return positions in local reference corresponding to cStart and cEnd in
+   * matrix data. Positions are base 1 column indices for sequence associated
+   * matrices.
+   * 
    * @param cStart
    * @param cEnd
    * @return int[] { start, end (inclusive) for each contiguous segment}
    */
-  default int[] getMappedPositionsFor(int cStart, int cEnd) {
-    return new int[] { cStart, cEnd};
+  default int[] getMappedPositionsFor(int cStart, int cEnd)
+  {
+    return new int[] { cStart, cEnd };
   }
 
-  default Color getColourForGroup() {
+  default Color getColourForGroup()
+  {
     return null;
   }