Index: trunk/test/unit/org/openstreetmap/josm/data/osm/NodeDataTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/osm/NodeDataTest.java	(revision 10729)
+++ trunk/test/unit/org/openstreetmap/josm/data/osm/NodeDataTest.java	(revision 10733)
@@ -20,8 +20,8 @@
         data.setChangesetId(314159);
         final Object readData;
-        try (final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
-             final ObjectOutputStream out = new ObjectOutputStream(bytes)) {
+        try (ByteArrayOutputStream bytes = new ByteArrayOutputStream();
+             ObjectOutputStream out = new ObjectOutputStream(bytes)) {
             out.writeObject(data);
-            try (final ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes.toByteArray()))) {
+            try (ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes.toByteArray()))) {
                 readData = in.readObject();
             }
Index: trunk/test/unit/org/openstreetmap/josm/data/osm/WayDataTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/data/osm/WayDataTest.java	(revision 10729)
+++ trunk/test/unit/org/openstreetmap/josm/data/osm/WayDataTest.java	(revision 10733)
@@ -20,8 +20,8 @@
         data.setChangesetId(314159);
         final Object readData;
-        try (final ByteArrayOutputStream bytes = new ByteArrayOutputStream();
-             final ObjectOutputStream out = new ObjectOutputStream(bytes)) {
+        try (ByteArrayOutputStream bytes = new ByteArrayOutputStream();
+             ObjectOutputStream out = new ObjectOutputStream(bytes)) {
             out.writeObject(data);
-            try (final ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes.toByteArray()))) {
+            try (ObjectInputStream in = new ObjectInputStream(new ByteArrayInputStream(bytes.toByteArray()))) {
                 readData = in.readObject();
             }
Index: trunk/test/unit/org/openstreetmap/josm/io/GpxReaderTest.java
===================================================================
--- trunk/test/unit/org/openstreetmap/josm/io/GpxReaderTest.java	(revision 10729)
+++ trunk/test/unit/org/openstreetmap/josm/io/GpxReaderTest.java	(revision 10733)
@@ -32,6 +32,6 @@
     public static GpxData parseGpxData(String filename) throws IOException, SAXException {
         final GpxData result;
-        try (final FileInputStream in = new FileInputStream(new File(filename))) {
-            final GpxReader reader = new GpxReader(in);
+        try (FileInputStream in = new FileInputStream(new File(filename))) {
+            GpxReader reader = new GpxReader(in);
             assertTrue(reader.parse(false));
             result = reader.getGpxData();
