Index: trunk/scripts/SyncEditorLayerIndex.java
===================================================================
--- trunk/scripts/SyncEditorLayerIndex.java	(revision 19137)
+++ trunk/scripts/SyncEditorLayerIndex.java	(revision 19139)
@@ -283,5 +283,5 @@
         if (outputStream != null) {
             try {
-                outputStream.write(s + System.getProperty("line.separator"));
+                outputStream.write(s + System.lineSeparator());
             } catch (IOException e) {
                 throw new JosmRuntimeException(e);
@@ -386,4 +386,5 @@
         myprintln("*** Loaded "+eliEntries.size()+" entries (ELI). ***");
     }
+
     void loadELIUsers() throws IOException {
         try (JsonReader jr = Json.createReader(Files.newBufferedReader(Paths.get(idInputFile), UTF_8))) {
@@ -635,9 +636,9 @@
             for (String l : le) {
                 String e = "";
-                if(idUrls.get(l) != null && rapidUrls.get(l) != null)
+                if (idUrls.get(l) != null && rapidUrls.get(l) != null)
                     e = " **iD+Rapid**";
-                else if(idUrls.get(l) != null)
+                else if (idUrls.get(l) != null)
                     e = " **iD**";
-                else if(rapidUrls.get(l) != null)
+                else if (rapidUrls.get(l) != null)
                     e = " **Rapid**";
                 myprintln("-  " + getDescription(eliUrls.get(l)) + e);
@@ -1372,5 +1373,5 @@
             return p.getString("url");
         else
-            return ((JsonObject)e).getString("template");
+            return ((JsonObject) e).getString("template");
     }
 
