Index: /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 13310)
+++ /trunk/src/org/openstreetmap/josm/tools/ImageProvider.java	(revision 13311)
@@ -1225,17 +1225,4 @@
     }
 
-    /** Quit parsing, when a certain condition is met */
-    private static class SAXReturnException extends SAXException {
-        private final String result;
-
-        SAXReturnException(String result) {
-            this.result = result;
-        }
-
-        public String getResult() {
-            return result;
-        }
-    }
-
     /**
      * Reads the wiki page on a certain file in html format in order to find the real image URL.
Index: /trunk/src/org/openstreetmap/josm/tools/SAXReturnException.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/tools/SAXReturnException.java	(revision 13311)
+++ /trunk/src/org/openstreetmap/josm/tools/SAXReturnException.java	(revision 13311)
@@ -0,0 +1,17 @@
+// License: GPL. For details, see LICENSE file.
+package org.openstreetmap.josm.tools;
+
+import org.xml.sax.SAXException;
+
+/** Quit parsing, when a certain condition is met */
+class SAXReturnException extends SAXException {
+    private final String result;
+
+    SAXReturnException(String result) {
+        this.result = result;
+    }
+
+    public final String getResult() {
+        return result;
+    }
+}
