Ignore:
Timestamp:
2011-06-26T13:43:35+02:00 (13 years ago)
Author:
stoecker
Message:

remove unused icons, make connection timouts configurable and increase them a bit to handle JOSM server delays

File:
1 edited

Legend:

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

    r4100 r4172  
    88public enum OsmPrimitiveType {
    99
    10     NODE (marktr("node"), Node.class, NodeData.class),
    11     WAY  (marktr("way"), Way.class, WayData.class),
    12     RELATION (marktr("relation"), Relation.class, RelationData.class),
     10    NODE (marktr(/* ICON(data/) */"node"), Node.class, NodeData.class),
     11    WAY  (marktr(/* ICON(data/) */"way"), Way.class, WayData.class),
     12    RELATION (marktr(/* ICON(data/) */"relation"), Relation.class, RelationData.class),
    1313
    1414    /* only for display, no real type */
    15     CLOSEDWAY  (marktr("closedway"), null, WayData.class),
    16     MULTIPOLYGON (marktr("multipolygon"), null, RelationData.class);
     15    CLOSEDWAY  (marktr(/* ICON(data/) */"closedway"), null, WayData.class),
     16    MULTIPOLYGON (marktr(/* ICON(data/) */"multipolygon"), null, RelationData.class);
    1717
    1818    private final String apiTypeName;
Note: See TracChangeset for help on using the changeset viewer.