X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fcom%2Fstevesoft%2Fpat%2Fwrap%2FRandomAccessFileWrap.java;h=66a10147bdd40db9be4c92c8254ec6244531ec4d;hb=refs%2Fheads%2Freleases%2FRelease_2_11_Branch;hp=f5b61abd7d86e401dc4b4d7487af06dca7e5db21;hpb=aced09c4feeaf3406269442c14e54abeeb4cad81;p=jalview.git diff --git a/src/com/stevesoft/pat/wrap/RandomAccessFileWrap.java b/src/com/stevesoft/pat/wrap/RandomAccessFileWrap.java index f5b61ab..66a1014 100755 --- a/src/com/stevesoft/pat/wrap/RandomAccessFileWrap.java +++ b/src/com/stevesoft/pat/wrap/RandomAccessFileWrap.java @@ -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()