diff options
Diffstat (limited to 'ao-tools/altosui/AltosSiteMapCache.java')
-rw-r--r-- | ao-tools/altosui/AltosSiteMapCache.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ao-tools/altosui/AltosSiteMapCache.java b/ao-tools/altosui/AltosSiteMapCache.java index e9dbf8e6..2e62cc45 100644 --- a/ao-tools/altosui/AltosSiteMapCache.java +++ b/ao-tools/altosui/AltosSiteMapCache.java @@ -33,6 +33,7 @@ import java.net.URLConnection; public class AltosSiteMapCache extends JLabel { public static boolean fetchMap(File file, String url) { URL u; + try { u = new URL(url); } catch (java.net.MalformedURLException e) { @@ -100,4 +101,3 @@ public class AltosSiteMapCache extends JLabel { } } } - |