Changeset 29684 in osm for applications/editors/josm


Ignore:
Timestamp:
2013-06-21T01:30:52+02:00 (11 years ago)
Author:
donvip
Message:

[josm_sds] fix #josm8799 - update to JOSM 6010

Location:
applications/editors/josm/plugins/sds
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/sds/build.xml

    r29435 r29684  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** Maintaining versions
    4 ** ====================
    5 ** see README.template
    6 **
    7 ** Usage
    8 ** =====
    9 ** To build it run
    10 **
    11 **    > ant
    12 ** or
    13 **    > ant clean dist
    14 **
    15 ** To install the generated plugin locally (in you default plugin directory) run
    16 **
    17 **    > ant install
    18 **
    19 ** The generated plugin jar is not automatically available in JOSMs plugin configuration
    20 ** dialog. You have to check it in first.
    21 **
    22 ** Use the ant target 'publish' to check in the plugin and make it available to other
    23 ** JOSM users:
    24 **    set the properties commit.message and plugin.main.version
    25 ** and run
    26 **    > ant  publish
    27 **
    28 **
    29 -->
    302<project name="sds" default="dist" basedir=".">
    313
     
    335    <property name="commit.message" value=""/>
    346    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    35     <property name="plugin.main.version" value="4549"/>
     7    <property name="plugin.main.version" value="6010"/>
    368
    379    <!--
  • applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/ReadPostprocessor.java

    r28160 r29684  
    6363               
    6464                for (OsmPrimitive p : ds.allPrimitives()) {
    65                         p.visit(adder);
     65                        p.accept(adder);
    6666                }
    6767                       
  • applications/editors/josm/plugins/sds/src/org/openstreetmap/hot/sds/SeparateDataStorePlugin.java

    r28160 r29684  
    103103        protected void learn(IPrimitive prim) {
    104104                if (prim instanceof OsmPrimitive) {
    105                         ((OsmPrimitive)prim).save().visit(learnVisitor);
     105                        ((OsmPrimitive)prim).save().accept(learnVisitor);
    106106                } else {
    107                         prim.visit(learnVisitor);
     107                        prim.accept(learnVisitor);
    108108                }
    109109        }
Note: See TracChangeset for help on using the changeset viewer.