Index: applications/editors/josm/plugins/reverter/build.xml
===================================================================
--- applications/editors/josm/plugins/reverter/build.xml	(revision 31896)
+++ applications/editors/josm/plugins/reverter/build.xml	(revision 31897)
@@ -4,5 +4,5 @@
     <property name="commit.message" value="Reverter: Update MultiOsmReader to support null data after redaction"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="8338"/>
+    <property name="plugin.main.version" value="9241"/>
 
     <!-- Configure these properties (replace "..." accordingly).
Index: applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java
===================================================================
--- applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 31896)
+++ applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java	(revision 31897)
@@ -249,5 +249,5 @@
     public void downloadMissingPrimitives(ProgressMonitor monitor) throws OsmTransferException {
         if (!hasMissingObjects()) return;
-        MultiFetchServerObjectReader rdr = new MultiFetchServerObjectReader();
+        MultiFetchServerObjectReader rdr = MultiFetchServerObjectReader.create();
         for (PrimitiveId id : missing) {
             switch (id.getType()) {
Index: applications/editors/josm/plugins/trustosm/build.xml
===================================================================
--- applications/editors/josm/plugins/trustosm/build.xml	(revision 31896)
+++ applications/editors/josm/plugins/trustosm/build.xml	(revision 31897)
@@ -5,5 +5,8 @@
     <property name="commit.message" value="New plugin for digital signing osm data"/>
     <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
-    <property name="plugin.main.version" value="7001" />
+    <property name="plugin.main.version" value="9241" />
+    ;qa
+    :q
+
     <property name="plugin.author" value="Christoph Wagner" />
     <property name="plugin.class" value="org.openstreetmap.josm.plugins.trustosm.TrustOSMplugin" />
Index: applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java
===================================================================
--- applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java	(revision 31896)
+++ applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java	(revision 31897)
@@ -76,5 +76,5 @@
             synchronized (this) {
                 if (canceled) return;
-                objectReader = new MultiFetchServerObjectReader();
+                objectReader = MultiFetchServerObjectReader.create();
             }
             objectReader.append(missing);
