Changeset 19281 in josm for trunk/src


Ignore:
Timestamp:
2025-01-13T11:18:31+01:00 (5 weeks ago)
Author:
stoecker
Message:

converted_by no longer exists in the database, stop handling it special

Location:
trunk/src/org/openstreetmap/josm/data
Files:
2 edited

Legend:

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

    r19108 r19281  
    919919                    Arrays.asList(
    920920                            "created_by",
    921                             "converted_by",
    922921                            "current_id", /* prevent export of this JOSM internal information, see OsmReader */
    923922                            "geobase:datasetName",
  • trunk/src/org/openstreetmap/josm/data/validation/tests/UntaggedNode.java

    r17153 r19281  
    7676            msg = marktr("Has key ''note'' or ''comment'' or ''description''");
    7777            code = UNTAGGED_NODE_NOTE;
    78         } else if (key.startsWith("created_by") || key.startsWith("converted_by")) {
     78        } else if (key.startsWith("created_by")) {
    7979            /* translation note: don't translate quoted words */
    80             msg = marktr("Has key ''created_by'' or ''converted_by''");
     80            msg = marktr("Has key ''created_by''");
    8181            code = UNTAGGED_NODE_CREATED_BY;
    8282        } else if (key.startsWith("watch")) {
Note: See TracChangeset for help on using the changeset viewer.