Change Long to long

This commit is contained in:
Mark DePristo 2013-04-30 09:21:10 -04:00
parent 0e7e6d35d8
commit 73fcacbf1b
1 changed files with 2 additions and 2 deletions

View File

@ -87,7 +87,7 @@ public class GATKBAMIndex {
private SeekableFileStream fileStream;
private SeekableBufferedStream bufferedStream;
private Long fileLength;
private long fileLength;
public GATKBAMIndex(final File file) {
mFile = file;
@ -320,7 +320,7 @@ public class GATKBAMIndex {
try {
bufferedStream.close();
fileStream.close();
fileLength=null;
fileLength = -1;
}
catch (IOException exc) {
throw new ReviewedStingException("Unable to close index file " + mFile, exc);