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:
Simon Willnauer 2011-05-02 14:23:13 +00:00
parent a54567963a
commit 621b75c567
4 changed files with 0 additions and 6 deletions

View File

@ -133,7 +133,6 @@ public class MultiPerDocValues extends PerDocValues {
return result;
}
@Override
public void close() throws IOException {
PerDocValues[] perDocValues = this.subs;
for (PerDocValues values : perDocValues) {

View File

@ -293,7 +293,6 @@ final class PerFieldCodecWrapper extends Codec {
return perDocProducer.docValues(field);
}
@Override
public void close() throws IOException {
final Iterator<PerDocValues> it = codecs.values().iterator();
IOException err = null;
@ -325,7 +324,6 @@ final class PerFieldCodecWrapper extends Codec {
}
}
@Override
public void close() throws IOException {
Iterator<PerDocConsumer> it = consumers.iterator();
IOException err = null;

View File

@ -58,8 +58,6 @@ public class DocValuesCodec extends Codec {
public PerDocConsumer docsConsumer(final PerDocWriteState state)
throws IOException {
return new PerDocConsumer() {
@Override
public void close() throws IOException {
}

View File

@ -130,7 +130,6 @@ public class DocValuesProducerBase extends PerDocValues {
}
}
@Override
public void close() throws IOException {
Collection<DocValues> values = docValues.values();
IOException ex = null;