Index: applications/editors/josm/plugins/slippymap/build.xml
===================================================================
--- applications/editors/josm/plugins/slippymap/build.xml	(revision 5018)
+++ applications/editors/josm/plugins/slippymap/build.xml	(revision 5147)
@@ -1,30 +1,30 @@
 <project name="slippymap" default="dist" basedir=".">
 
-	<target name="dist" depends="compile">
-		<!-- images -->
-		<copy todir="build/images">
-			<fileset dir="images" />
-		</copy>
+  <target name="dist" depends="compile">
+    <!-- images -->
+    <copy todir="build/images">
+      <fileset dir="images" />
+    </copy>
 
-		<!-- create josm-custom.jar -->
-		<jar destfile="slippymap.jar" basedir="build">
-			<manifest>
-                <attribute name="Plugin-Class" value="slippymap.SlippyMapPlugin" />
-                <attribute name="Plugin-Description" value="Displays a slippy map tile grid, and tile status info" />
-			</manifest>
-		</jar>
-	</target>
+    <!-- create josm-custom.jar -->
+    <jar destfile="slippymap.jar" basedir="build">
+      <manifest>
+        <attribute name="Plugin-Class" value="slippymap.SlippyMapPlugin" />
+        <attribute name="Plugin-Description" value="Displays a slippy map tile grid, and tile status info" />
+      </manifest>
+    </jar>
+  </target>
 
-	<target name="compile" depends="init">
-		<javac srcdir="slippymap" classpath="../../core/dist/josm-custom.jar" destdir="build" />
-	</target>
+  <target name="compile" depends="init">
+    <javac srcdir="slippymap" classpath="../../core/dist/josm-custom.jar" destdir="build" />
+  </target>
 
-	<target name="init">
-		<mkdir dir="build" />
-	</target>
+  <target name="init">
+    <mkdir dir="build" />
+  </target>
 
-	<target name="clean">
-		<delete dir="build" />
-	</target>
+  <target name="clean">
+    <delete dir="build" />
+  </target>
 
 </project>
