Changeset 2996 in josm for trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
- Timestamp:
- 16.02.2010 09:30:28 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/TagCollection.java
r2990 r2996 117 117 } 118 118 119 private HashSet<Tag> tags;119 private final HashSet<Tag> tags = new HashSet<Tag>(); 120 120 121 121 /** … … 123 123 */ 124 124 public TagCollection() { 125 tags = new HashSet<Tag>();126 125 } 127 126 … … 133 132 */ 134 133 public TagCollection(TagCollection other) { 135 this();136 134 if (other != null) { 137 135 tags.addAll(other.tags);
Note: See TracChangeset
for help on using the changeset viewer.
