From 210daf5db24fe0bf3b2eb903fc630abcd7ad78cf Mon Sep 17 00:00:00 2001 From: Laurent Clouet Date: Thu, 12 Jan 2017 20:50:44 +0100 Subject: [PATCH] Bugfix: wrong variable --- .../sheepit/client/standalone/swing/activity/Settings.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/sheepit/client/standalone/swing/activity/Settings.java b/src/com/sheepit/client/standalone/swing/activity/Settings.java index 7e77844..e63bb80 100644 --- a/src/com/sheepit/client/standalone/swing/activity/Settings.java +++ b/src/com/sheepit/client/standalone/swing/activity/Settings.java @@ -474,7 +474,7 @@ public class Settings implements Activity { } catch (MalformedURLException e1) { System.err.println("Error: wrong url for proxy"); - System.err.println(e); + System.err.println(e1); System.exit(2); } } @@ -487,7 +487,7 @@ public class Settings implements Activity { } catch (NumberFormatException e1) { System.err.println("Error: wrong tile format"); - System.err.println(e); + System.err.println(e1); System.exit(2); } }