Ignore:
Timestamp:
2014-10-05T01:24:20+02:00 (10 years ago)
Author:
Don-vip
Message:

fix #10582 - drop support of undocumented tag josm/ignore. New deprecation test in mapcss tagchecker, with new fix resolution that deletes the object. Please use upload prohibition flag at layer level.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/APIDataSet.java

    r7120 r7599  
    2929
    3030/**
    31  * Represents a collection of {@link OsmPrimitive}s which should be uploaded to the
    32  * API.
     31 * Represents a collection of {@link OsmPrimitive}s which should be uploaded to the API.
    3332 * The collection is derived from the modified primitives of an {@link DataSet} and it provides methods
    3433 * for sorting the objects in upload order.
    35  *
     34 * @since 2025
    3635 */
    3736public class APIDataSet {
     
    6564
    6665        for (OsmPrimitive osm :primitives) {
    67             if (osm.get("josm/ignore") != null) {
    68                 continue;
    69             }
    7066            if (osm.isNewOrUndeleted() && !osm.isDeleted()) {
    7167                toAdd.add(osm);
Note: See TracChangeset for help on using the changeset viewer.