Ignore:
Timestamp:
2009-04-17T15:25:57+02:00 (15 years ago)
Author:
framm
Message:

upload more precise version number in changeset. drop some "created_by" special cases.

File:
1 edited

Legend:

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

    r1523 r1530  
    152152     */
    153153    public static Collection<String> getUninterestingKeys() {
    154         if(uninteresting == null) {
     154        if (uninteresting == null) {
    155155            uninteresting = Main.pref.getCollection("tags.uninteresting",
    156156                    Arrays.asList(new String[]{"source","note","comment","converted_by","created_by"}));
     
    303303    /**
    304304     * true if this object is considered "tagged". To be "tagged", an object
    305      * must have one or more "non-standard" tags. "created_by" and "source"
    306      * are typically considered "standard" tags and do not make an object
     305     * must have one or more "interesting" tags. "created_by" and "source"
     306     * are typically considered "uninteresting" and do not make an object
    307307     * "tagged".
    308308     */
Note: See TracChangeset for help on using the changeset viewer.