mirror of
https://github.com/apache/lucene.git
synced 2025-03-05 15:59:25 +00:00
removed @Override on implemented Interface methods
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/realtime_search@1075076 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a11da24e91
commit
c5694b06b4
@ -62,17 +62,14 @@ public abstract class DocumentsWriterPerThreadPool {
|
||||
return new Iterator<ThreadState>() {
|
||||
int i = 0;
|
||||
|
||||
@Override
|
||||
public boolean hasNext() {
|
||||
return i < upto;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ThreadState next() {
|
||||
return perThreads[i++];
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove() {
|
||||
throw new UnsupportedOperationException("remove() not supported.");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user