Bugfix: wrong variable

This commit is contained in:
Laurent Clouet
2017-01-12 20:50:44 +01:00
parent d8aa315699
commit 210daf5db2

View File

@@ -474,7 +474,7 @@ public class Settings implements Activity {
} }
catch (MalformedURLException e1) { catch (MalformedURLException e1) {
System.err.println("Error: wrong url for proxy"); System.err.println("Error: wrong url for proxy");
System.err.println(e); System.err.println(e1);
System.exit(2); System.exit(2);
} }
} }
@@ -487,7 +487,7 @@ public class Settings implements Activity {
} }
catch (NumberFormatException e1) { catch (NumberFormatException e1) {
System.err.println("Error: wrong tile format"); System.err.println("Error: wrong tile format");
System.err.println(e); System.err.println(e1);
System.exit(2); System.exit(2);
} }
} }