unused variable

This commit is contained in:
Anton Keks 2015-09-02 00:10:44 +03:00
parent 345a44d03a
commit 8a6f728dd2

View File

@ -110,7 +110,6 @@ public class TXTExporter extends AbstractExporter {
try {
reader = new BufferedReader(new FileReader(fileName));
String originalStartIP = null;
String startIPAfterLoad = null;
String endIp = null;
@ -124,7 +123,6 @@ public class TXTExporter extends AbstractExporter {
String[] sp = line.split("\\s+");
if (i == 4) {
originalStartIP = sp[1];
startIPAfterLoad = sp[1];
endIp = sp[3];
}