remove unnecessary overrides

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@794088 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2009-07-14 22:09:48 +00:00
parent 98b4dd2e93
commit cf2aac0ca3
1 changed files with 0 additions and 17 deletions

View File

@ -159,23 +159,6 @@ public class SignatureUpdateProcessorFactory extends
next.processAdd(cmd);
}
@Override
public void processDelete(DeleteUpdateCommand cmd) throws IOException {
if (next != null)
next.processDelete(cmd);
}
@Override
public void processCommit(CommitUpdateCommand cmd) throws IOException {
if (next != null)
next.processCommit(cmd);
}
@Override
public void finish() throws IOException {
if (next != null)
next.finish();
}
}
// for testing