mirror of
https://github.com/angryip/ipscan.git
synced 2025-10-26 11:18:17 +00:00
drop deprecated method
This commit is contained in:
parent
15bdba8251
commit
81ad29fbc1
@ -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() {
|
||||
|
||||
@ -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
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user