delegate these methods for completeness, in case delegate overrides them (the huper stuff in bufferedindexinput is being tested in a roundabout way with CFS)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1140952 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-06-29 03:31:08 +00:00
parent a993ae9032
commit fed96d4fc6
1 changed files with 10 additions and 0 deletions

View File

@ -137,4 +137,14 @@ public class MockIndexInputWrapper extends IndexInput {
public Map<String,String> readStringStringMap() throws IOException {
return delegate.readStringStringMap();
}
@Override
public int readVInt() throws IOException {
return delegate.readVInt();
}
@Override
public long readVLong() throws IOException {
return delegate.readVLong();
}
}