JAL-3438 spotless for 2.11.2.0
[jalview.git] / src / jalview / ext / htsjdk / VCFReader.java
index e91164a..176b21d 100644 (file)
@@ -47,10 +47,12 @@ public class VCFReader implements Closeable, Iterable<VariantContext>
   private VCFFileReader reader;
 
   /**
-   * Constructor given a raw or compressed VCF file or a (csi or tabix) index file
+   * Constructor given a raw or compressed VCF file or a (csi or tabix) index
+   * file
    * <p>
-   * If the file path ends in ".tbi" or ".csi", <em>or</em> appending one of these
-   * extensions gives a valid file path, open as indexed, else as unindexed.
+   * If the file path ends in ".tbi" or ".csi", <em>or</em> appending one of
+   * these extensions gives a valid file path, open as indexed, else as
+   * unindexed.
    * 
    * @param f
    * @throws IOException
@@ -153,7 +155,7 @@ public class VCFReader implements Closeable, Iterable<VariantContext>
           final String chrom, final int start, final int end)
   {
     final CloseableIterator<VariantContext> it = reader.iterator();
-    
+
     return new CloseableIterator<VariantContext>()
     {
       boolean atEnd = false;