Changeset 31897 in osm for applications/editors
- Timestamp:
- 2016-01-01T19:03:00+01:00 (9 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/reverter/build.xml
r31120 r31897 4 4 <property name="commit.message" value="Reverter: Update MultiOsmReader to support null data after redaction"/> 5 5 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 6 <property name="plugin.main.version" value=" 8338"/>6 <property name="plugin.main.version" value="9241"/> 7 7 8 8 <!-- Configure these properties (replace "..." accordingly). -
applications/editors/josm/plugins/reverter/src/reverter/ChangesetReverter.java
r31590 r31897 249 249 public void downloadMissingPrimitives(ProgressMonitor monitor) throws OsmTransferException { 250 250 if (!hasMissingObjects()) return; 251 MultiFetchServerObjectReader rdr = newMultiFetchServerObjectReader();251 MultiFetchServerObjectReader rdr = MultiFetchServerObjectReader.create(); 252 252 for (PrimitiveId id : missing) { 253 253 switch (id.getType()) { -
applications/editors/josm/plugins/trustosm/build.xml
r31768 r31897 5 5 <property name="commit.message" value="New plugin for digital signing osm data"/> 6 6 <!-- enter the *lowest* JOSM version this plugin is currently compatible with --> 7 <property name="plugin.main.version" value="7001" /> 7 <property name="plugin.main.version" value="9241" /> 8 ;qa 9 :q 10 8 11 <property name="plugin.author" value="Christoph Wagner" /> 9 12 <property name="plugin.class" value="org.openstreetmap.josm.plugins.trustosm.TrustOSMplugin" /> -
applications/editors/josm/plugins/trustosm/src/org/openstreetmap/josm/plugins/trustosm/gui/DownloadSignedOsmDataTask.java
r30724 r31897 76 76 synchronized (this) { 77 77 if (canceled) return; 78 objectReader = newMultiFetchServerObjectReader();78 objectReader = MultiFetchServerObjectReader.create(); 79 79 } 80 80 objectReader.append(missing);
Note:
See TracChangeset
for help on using the changeset viewer.