JAL-1645 source formatting and organise imports
[jalview.git] / src / com / stevesoft / pat / wrap / RandomAccessFileWrap.java
index f5b61ab..66a1014 100755 (executable)
@@ -9,9 +9,12 @@ package com.stevesoft.pat.wrap;
 
 import jalview.util.MessageManager;
 
-import java.io.*;
+import java.io.IOException;
+import java.io.RandomAccessFile;
 
-import com.stevesoft.pat.*;
+import com.stevesoft.pat.BasicStringBufferLike;
+import com.stevesoft.pat.Regex;
+import com.stevesoft.pat.StringLike;
 
 /**
  * Provides a wrapper for a RandomAccessFile so that it can be searched by
@@ -86,11 +89,11 @@ public class RandomAccessFileWrap implements StringLike
     {
     }
 
-    throw new ArrayIndexOutOfBoundsException(MessageManager.formatMessage("exception.out_of_bounds_for_file", new String[]{
-               Integer.valueOf(i).toString(),
-               Integer.valueOf(i0).toString(),
-               Integer.valueOf(iend).toString()
-    }));
+    throw new ArrayIndexOutOfBoundsException(MessageManager.formatMessage(
+            "exception.out_of_bounds_for_file", new String[] {
+                Integer.valueOf(i).toString(),
+                Integer.valueOf(i0).toString(),
+                Integer.valueOf(iend).toString() }));
   }
 
   public String toString()