LUCENE-5586: BufferedChecksumIndexInput.clone now throws an UnsupportedOperationException.

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1586239 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Adrien Grand 2014-04-10 08:10:51 +00:00
parent 60be1d46bb
commit 9608b95934
1 changed files with 5 additions and 0 deletions

View File

@ -69,4 +69,9 @@ public class BufferedChecksumIndexInput extends ChecksumIndexInput {
public long length() {
return main.length();
}
@Override
public IndexInput clone() {
throw new UnsupportedOperationException();
}
}