Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 11925)
+++ /trunk/build.xml	(revision 11926)
@@ -137,5 +137,5 @@
             <!-- add attribute excludes="**/*BZip2*,**/*Bzip2*" to create a non-bzip2 supporting jar -->
             <manifest>
-                <attribute name="Main-class" value="JOSM"/>
+                <attribute name="Main-class" value="org.openstreetmap.josm.gui.MainApplication"/>
                 <attribute name="Main-Version" value="${version.entry.commit.revision} SVN"/>
                 <attribute name="Main-Date" value="${version.entry.commit.date}"/>
@@ -273,5 +273,5 @@
         <!-- JMapViewer -->
         <javac compiler="${javac.compiler}" sourcepath="" srcdir="${src.dir}" 
-            excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java,org/openstreetmap/gui/jmapviewer/JMapViewerTree.java,org/openstreetmap/gui/jmapviewer/checkBoxTree/**,org/openstreetmap/josm/**,JOSM.java,gnu/**"
+            excludes="com/**,oauth/**,org/apache/commons/**,org/glassfish/**,org/openstreetmap/gui/jmapviewer/Demo.java,org/openstreetmap/gui/jmapviewer/JMapViewerTree.java,org/openstreetmap/gui/jmapviewer/checkBoxTree/**,org/openstreetmap/josm/**,gnu/**"
             destdir="build" target="1.8" source="1.8" debug="on" includeantruntime="false" createMissingPackageInfoClass="false" encoding="UTF-8">
             <compilerclasspath>
@@ -517,5 +517,4 @@
         }
 
-        -keep class JOSM
         -keep class * extends org.openstreetmap.josm.io.FileImporter
         -keep class * extends org.openstreetmap.josm.io.FileExporter
Index: unk/src/JOSM.java
===================================================================
--- /trunk/src/JOSM.java	(revision 11925)
+++ 	(revision )
@@ -1,16 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-import org.openstreetmap.josm.gui.MainApplication;
-
-/**
- * JOSM main class (entry point of the application).<br/>
- *
- * The name of the main class will be the name of the application menu on OS X.
- * so instead of exposing "org.openstreetmap.josm.gui.MainApplication" to the
- * user, we subclass it with a nicer name "JOSM".
- * An alternative is to set the name in the plist file for the  OS X Application Bundle.
- *
- * @since 1023
- */
-public class JOSM extends MainApplication {
-
-}
Index: unk/test/unit/JOSMTest.java
===================================================================
--- /trunk/test/unit/JOSMTest.java	(revision 11925)
+++ 	(revision )
@@ -1,18 +1,0 @@
-// License: GPL. For details, see LICENSE file.
-import static org.junit.Assert.assertNotNull;
-
-import org.junit.Test;
-
-/**
- * Unit tests of {@link JOSM} class.
- */
-public class JOSMTest {
-
-    /**
-     * Unit test of {@link JOSM} constructor.
-     */
-    @Test
-    public void testJOSM() {
-        assertNotNull(new JOSM());
-    }
-}
