Index: applications/editors/josm/plugins/indoorhelper/src/org/openstreetmap/josm/plugins/indoorhelper/IndoorHelperPlugin.java
===================================================================
--- applications/editors/josm/plugins/indoorhelper/src/org/openstreetmap/josm/plugins/indoorhelper/IndoorHelperPlugin.java	(revision 34742)
+++ applications/editors/josm/plugins/indoorhelper/src/org/openstreetmap/josm/plugins/indoorhelper/IndoorHelperPlugin.java	(revision 34743)
@@ -62,5 +62,4 @@
     public IndoorHelperPlugin(PluginInformation info) throws IOException {
         super(info);
-        exportValidator("/data/indoorhelper.validator.mapcss");
         exportStyleFile("sit.mapcss");
         exportStyleFile("entrance_door_icon.png");
@@ -77,29 +76,4 @@
             // Secures that the plug-in is only loaded, if a new MapFrame is created.
             controller = new IndoorHelperController();
-        }
-    }
-
-    /**
-     * Exports the mapcss validator file to the preferences directory.
-     * @param resourceName resource name
-     * @throws IOException if any I/O error occurs
-     */
-    private void exportValidator(String resourceName) throws IOException {
-        try (InputStream stream = IndoorHelperPlugin.class.getResourceAsStream(resourceName)) {
-            if (stream == null) {
-                throw new IOException("Cannot get resource \"" + resourceName + "\" from Jar file.");
-            }
-
-            File valDir = new File(Config.getDirs().getUserDataDirectory(true), "validator");
-            valDir.mkdirs();
-            String outPath = valDir.getAbsolutePath() +sep+ "indoorhelper.validator.mapcss";
-
-            try (OutputStream resStreamOut = new FileOutputStream(outPath)) {
-                int readBytes;
-                byte[] buffer = new byte[4096];
-                while ((readBytes = stream.read(buffer)) > 0) {
-                    resStreamOut.write(buffer, 0, readBytes);
-                }
-            }
         }
     }
