mirror of https://github.com/apache/lucene.git
removed @Override annotations for java5
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/docvalues@1098593 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a54567963a
commit
621b75c567
|
@ -133,7 +133,6 @@ public class MultiPerDocValues extends PerDocValues {
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
PerDocValues[] perDocValues = this.subs;
|
PerDocValues[] perDocValues = this.subs;
|
||||||
for (PerDocValues values : perDocValues) {
|
for (PerDocValues values : perDocValues) {
|
||||||
|
|
|
@ -293,7 +293,6 @@ final class PerFieldCodecWrapper extends Codec {
|
||||||
return perDocProducer.docValues(field);
|
return perDocProducer.docValues(field);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
final Iterator<PerDocValues> it = codecs.values().iterator();
|
final Iterator<PerDocValues> it = codecs.values().iterator();
|
||||||
IOException err = null;
|
IOException err = null;
|
||||||
|
@ -325,7 +324,6 @@ final class PerFieldCodecWrapper extends Codec {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
Iterator<PerDocConsumer> it = consumers.iterator();
|
Iterator<PerDocConsumer> it = consumers.iterator();
|
||||||
IOException err = null;
|
IOException err = null;
|
||||||
|
|
|
@ -58,8 +58,6 @@ public class DocValuesCodec extends Codec {
|
||||||
public PerDocConsumer docsConsumer(final PerDocWriteState state)
|
public PerDocConsumer docsConsumer(final PerDocWriteState state)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
return new PerDocConsumer() {
|
return new PerDocConsumer() {
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -130,7 +130,6 @@ public class DocValuesProducerBase extends PerDocValues {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() throws IOException {
|
public void close() throws IOException {
|
||||||
Collection<DocValues> values = docValues.values();
|
Collection<DocValues> values = docValues.values();
|
||||||
IOException ex = null;
|
IOException ex = null;
|
||||||
|
|
Loading…
Reference in New Issue