Changeset 33164 in osm for applications/editors


Ignore:
Timestamp:
2017-02-26T05:25:20+01:00 (7 years ago)
Author:
donvip
Message:

update to JOSM 11626

Location:
applications/editors/josm/plugins/o5m
Files:
2 edited

Legend:

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

    r32837 r33164  
    11<?xml version="1.0" encoding="utf-8"?>
    2 <!--
    3 ** This is a template build file for a JOSM  plugin.
    4 **
    5 ** Maintaining versions
    6 ** ====================
    7 ** See README.template
    8 **
    9 ** Usage
    10 ** =====
    11 ** Call "ant help" to get possible build targets.
    12 **
    13 -->
    142<project name="o5m" default="dist" basedir=".">
    153
     
    175    <property name="commit.message" value="Commit message"/>
    186    <!-- enter the *lowest* JOSM version this plugin is currently compatible with -->
    19     <property name="plugin.main.version" value="10580"/>
    20 
     7    <property name="plugin.main.version" value="11626"/>
    218
    229    <!-- Configure these properties (replace "..." accordingly).
  • applications/editors/josm/plugins/o5m/src/org/openstreetmap/josm/plugins/o5m/io/O5mReader.java

    r33012 r33164  
    221221            if (!b.isCollapsed() && LatLon.isValidLat(minlat) && LatLon.isValidLat(maxlat)
    222222                                 && LatLon.isValidLon(minlon) && LatLon.isValidLon(maxlon)) {
    223                 ds.dataSources.add(new DataSource(b, header));
     223                ds.addDataSource(new DataSource(b, header));
    224224            } else {
    225225                Main.error("Invalid Bounds: "+b);
Note: See TracChangeset for help on using the changeset viewer.