Index: /trunk/build.xml
===================================================================
--- /trunk/build.xml	(revision 10170)
+++ /trunk/build.xml	(revision 10171)
@@ -653,5 +653,5 @@
     <target name="checkstyle" depends="init-properties">
         <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
-             classpath="tools/checkstyle/checkstyle-6.17-all.jar"/>
+             classpath="tools/checkstyle/checkstyle-6.18-all.jar"/>
         <checkstyle config="tools/checkstyle/josm_checks.xml">
             <fileset dir="${base.dir}/src/org/openstreetmap/josm" includes="**/*.java"
Index: /trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java
===================================================================
--- /trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java	(revision 10170)
+++ /trunk/src/org/openstreetmap/josm/io/GeoJSONWriter.java	(revision 10171)
@@ -124,6 +124,5 @@
         return builder
                 .add(BigDecimal.valueOf(c.getX()).setScale(11, RoundingMode.HALF_UP))
-                .add(BigDecimal.valueOf(c.getY()).setScale(11, RoundingMode.HALF_UP))
-                ;
+                .add(BigDecimal.valueOf(c.getY()).setScale(11, RoundingMode.HALF_UP));
     }
 
Index: /trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java
===================================================================
--- /trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java	(revision 10170)
+++ /trunk/test/unit/org/openstreetmap/josm/io/GeoJSONWriterTest.java	(revision 10171)
@@ -1,4 +1,6 @@
 // License: GPL. For details, see LICENSE file.
 package org.openstreetmap.josm.io;
+
+import static org.junit.Assert.assertEquals;
 
 import org.junit.BeforeClass;
@@ -11,7 +13,7 @@
 import org.openstreetmap.josm.gui.preferences.projection.ProjectionPreference;
 
-import static org.hamcrest.CoreMatchers.*;
-import static org.junit.Assert.*;
-
+/**
+ * Unit tests of {@link GeoJSONWriter} class.
+ */
 public class GeoJSONWriterTest {
 
@@ -24,6 +26,9 @@
     }
 
+    /**
+     * Unit test
+     */
     @Test
-    public void testPoint() throws Exception {
+    public void testPoint() {
         final Node node = new Node(new LatLon(12.3, 4.56));
         node.put("name", "foo");
@@ -33,5 +38,5 @@
         final OsmDataLayer layer = new OsmDataLayer(ds, "foo", null);
         final GeoJSONWriter writer = new GeoJSONWriter(layer, ProjectionPreference.wgs84.getProjection());
-        assertThat(writer.write().trim(), is(("" +
+        assertEquals(("" +
                 "{\n" +
                 "    'type':'FeatureCollection',\n" +
@@ -59,5 +64,5 @@
                 "        }\n" +
                 "    ]\n" +
-                "}").replace("'", "\"")));
+                "}").replace("'", "\""), writer.write().trim());
     }
 }
