drop deprecated method

This commit is contained in:
Anton Keks 2022-01-21 20:38:53 +02:00
parent 15bdba8251
commit 81ad29fbc1
2 changed files with 0 additions and 10 deletions

View File

@ -16,7 +16,6 @@ import java.io.*;
* @author Anton Keks
*/
public abstract class AbstractExporter implements Exporter {
protected PrintWriter output;
protected boolean append;
@ -39,10 +38,6 @@ public abstract class AbstractExporter implements Exporter {
}
@Override public void nextAddressResults(Object[] results) throws IOException {
nextAdressResults(results); // for backwards-compatibility
}
@Override public void nextAdressResults(Object[] results) {
}
public Exporter clone() {

View File

@ -64,11 +64,6 @@ public interface Exporter extends Cloneable, Plugin {
*/
void nextAddressResults(Object[] results) throws IOException;
/**
* @deprecated mispelled method for backwards-compatibility
*/
void nextAdressResults(Object[] results) throws IOException;
/**
* Clones the Exporter instance
*/