Index: trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java
===================================================================
--- trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java	(revision 2448)
+++ trunk/test/functional/org/openstreetmap/josm/io/MultiFetchServerObjectReaderTest.java	(revision 2498)
@@ -56,8 +56,7 @@
         //
         for (int i=0; i< numNodes; i++) {
-            Node n = new Node(0);
+            Node n = new Node();
             n.setCoor(new LatLon(-36.6,47.6));
             n.put("name", "node-"+i);
-            n.incomplete = false;
             ds.addPrimitive(n);
             nodes.add(n);
@@ -68,6 +67,5 @@
         //
         for (int i=0; i< numWays; i++) {
-            Way w = new Way(0);
-            w.incomplete = false;
+            Way w = new Way();
             int numNodesInWay = 2 + (int)Math.round(Math.random() * 5);
             int start = (int)Math.round(Math.random() * numNodes);
@@ -86,6 +84,5 @@
         //
         for (int i=0; i< numRelations; i++) {
-            Relation r = new Relation(0);
-            r.incomplete = false;
+            Relation r = new Relation();
             r.put("name", "relation-" +i);
             int numNodesInRelation = (int)Math.round(Math.random() * 10);
@@ -132,5 +129,5 @@
 
     @BeforeClass
-    public static void  init() throws OsmTransferException, InterruptedException{
+    public static void  init() throws OsmTransferException {
         logger.info("initializing ...");
         testProperties = new Properties();
Index: trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java
===================================================================
--- trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java	(revision 2448)
+++ trunk/test/functional/org/openstreetmap/josm/io/OsmServerBackreferenceReaderTest.java	(revision 2498)
@@ -62,8 +62,7 @@
     protected static void populateTestDataSetWithNodes(DataSet ds) {
         for (int i=0;i<100;i++) {
-            Node n = new Node(0);
+            Node n = new Node();
             n.setCoor(new LatLon(-36.6,47.6));
             n.put("name", "node-"+i);
-            n.incomplete = false;
             ds.addPrimitive(n);
         }
@@ -72,6 +71,5 @@
     protected static void populateTestDataSetWithWays(DataSet ds) {
         for (int i=0;i<20;i++) {
-            Way w = new Way(0);
-            w.incomplete = false;
+            Way w = new Way();
             for (int j = 0; j < 10;j++) {
                 w.addNode(lookupNode(ds, i+j));
@@ -84,6 +82,5 @@
     protected static void populateTestDataSetWithRelations(DataSet ds) {
         for (int i=0;i<10;i++) {
-            Relation r = new Relation(0);
-            r.incomplete = false;
+            Relation r = new Relation();
             r.put("name", "relation-" +i);
             for (int j =0; j < 10; j++) {
@@ -139,5 +136,5 @@
 
     @BeforeClass
-    public static void  init() throws OsmTransferException, InterruptedException{
+    public static void  init() throws OsmTransferException {
         logger.info("initializing ...");
         testProperties = new Properties();
