dead code

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/pforcodec_3892@1357225 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-07-04 11:10:38 +00:00
parent 4985b07040
commit 1e5b9e12d8
2 changed files with 2 additions and 6 deletions

View File

@ -85,10 +85,8 @@ public final class ForFactory extends IntStreamFactory {
this.encodedBuffer = ByteBuffer.wrap(encoded).asIntBuffer(); this.encodedBuffer = ByteBuffer.wrap(encoded).asIntBuffer();
} }
public void seek(long pos) {
}
// TODO: implement public void skipBlock() {} ? // TODO: implement public void skipBlock() {} ?
@Override
public void readBlock() throws IOException { public void readBlock() throws IOException {
final int numBytes = in.readInt(); final int numBytes = in.readInt();
assert numBytes <= blockSize*8+4; assert numBytes <= blockSize*8+4;

View File

@ -85,10 +85,8 @@ public final class PForFactory extends IntStreamFactory {
this.encodedBuffer = ByteBuffer.wrap(encoded).asIntBuffer(); this.encodedBuffer = ByteBuffer.wrap(encoded).asIntBuffer();
} }
public void seek(long pos) {
}
// TODO: implement public void skipBlock() {} ? // TODO: implement public void skipBlock() {} ?
@Override
public void readBlock() throws IOException { public void readBlock() throws IOException {
final int numBytes = in.readInt(); final int numBytes = in.readInt();
assert numBytes <= blockSize*8+4; assert numBytes <= blockSize*8+4;