Closes gh-12999
This commit is contained in:
Johnny Lim
2018-04-30 17:57:57 +09:00
committed by Stephane Nicoll
parent fc8b21100b
commit a723ac95a9
3 changed files with 12 additions and 12 deletions

View File

@@ -57,9 +57,9 @@ public class RandomAccessDataFile implements RandomAccessData {
* @param length the length of the section
*/
private RandomAccessDataFile(FileAccess fileAccess, long offset, long length) {
this.fileAccess = fileAccess;
this.offset = offset;
this.length = length;
this.fileAccess = fileAccess;
}
/**
@@ -120,7 +120,7 @@ public class RandomAccessDataFile implements RandomAccessData {
}
/**
* {@link RandomAccessDataInputStream} implementation for the
* {@link InputStream} implementation for the
* {@link RandomAccessDataFile}.
*/
private class DataInputStream extends InputStream {