Index: /applications/editors/josm/plugins/jts/.checkstyle
===================================================================
--- /applications/editors/josm/plugins/jts/.checkstyle	(revision 32539)
+++ /applications/editors/josm/plugins/jts/.checkstyle	(revision 32539)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<fileset-config file-format-version="1.2.0" simple-config="true" sync-formatter="false">
+  <local-check-config name="JOSM" location="/JOSM/tools/checkstyle/josm_checks.xml" type="project" description="">
+    <additional-data name="protect-config-file" value="false"/>
+  </local-check-config>
+  <fileset name="all" enabled="true" check-config-name="JOSM" local="true">
+    <file-match-pattern match-pattern="." include-pattern="true"/>
+  </fileset>
+  <filter name="DerivedFiles" enabled="true"/>
+  <filter name="FilesFromPackage" enabled="true">
+    <filter-data value="data"/>
+    <filter-data value="images"/>
+    <filter-data value="styles"/>
+    <filter-data value="resources"/>
+    <filter-data value="scripts"/>
+  </filter>
+</fileset-config>
Index: /applications/editors/josm/plugins/jts/.project
===================================================================
--- /applications/editors/josm/plugins/jts/.project	(revision 32538)
+++ /applications/editors/josm/plugins/jts/.project	(revision 32539)
@@ -16,7 +16,13 @@
 			</arguments>
 		</buildCommand>
+		<buildCommand>
+			<name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
+			<arguments>
+			</arguments>
+		</buildCommand>
 	</buildSpec>
 	<natures>
 		<nature>org.eclipse.jdt.core.javanature</nature>
+		<nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
 	</natures>
 </projectDescription>
Index: /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSConverter.java
===================================================================
--- /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSConverter.java	(revision 32538)
+++ /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSConverter.java	(revision 32539)
@@ -1,11 +1,22 @@
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.jts;
 
-import com.vividsolutions.jts.geom.*;
-import com.vividsolutions.jts.geom.impl.CoordinateArraySequence;
 import java.util.List;
+
 import org.openstreetmap.josm.data.osm.Node;
 import org.openstreetmap.josm.data.osm.OsmPrimitive;
 import org.openstreetmap.josm.data.osm.Relation;
 import org.openstreetmap.josm.data.osm.Way;
+
+import com.vividsolutions.jts.geom.Coordinate;
+import com.vividsolutions.jts.geom.CoordinateSequence;
+import com.vividsolutions.jts.geom.Geometry;
+import com.vividsolutions.jts.geom.GeometryFactory;
+import com.vividsolutions.jts.geom.LineString;
+import com.vividsolutions.jts.geom.LinearRing;
+import com.vividsolutions.jts.geom.Point;
+import com.vividsolutions.jts.geom.Polygon;
+import com.vividsolutions.jts.geom.PrecisionModel;
+import com.vividsolutions.jts.geom.impl.CoordinateArraySequence;
 
 /**
@@ -26,5 +37,4 @@
      * Conversions will use LatLon if useEastNorth is false, otherwise EastNorth
      * (the currently selected projection) will be used for coordinates.
-     * @param useEastNorth
      */
     public JTSConverter(boolean useEastNorth) {
@@ -64,5 +74,5 @@
 
     public CoordinateSequence convertNodesToCoordinateSequence(List<Node> nodes) {
-        Coordinate coords[] = new Coordinate[nodes.size()];
+        Coordinate[] coords = new Coordinate[nodes.size()];
         for (int i = 0; i < nodes.size(); i++) {
             coords[i] = convertNodeToCoordinate(nodes.get(i));
@@ -72,5 +82,5 @@
 
     public Point convertNode(Node node) {
-        Coordinate coords[] = {convertNodeToCoordinate(node)};
+        Coordinate[] coords = {convertNodeToCoordinate(node)};
         return new com.vividsolutions.jts.geom.Point(new CoordinateArraySequence(coords), getGeometryFactory());
     }
Index: /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSPlugin.java
===================================================================
--- /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSPlugin.java	(revision 32538)
+++ /applications/editors/josm/plugins/jts/src/org/openstreetmap/josm/plugins/jts/JTSPlugin.java	(revision 32539)
@@ -1,3 +1,3 @@
-// License: GPL. Copyright 2012 by Josh Doe and others
+// License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.plugins.jts;
 
