Changeset 18520 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2022-07-14T20:22:52+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/vector/VectorPrimitive.java
r18518 r18520 45 45 } 46 46 } 47 updateFlags(FLAG_TAGGED, hasKeys() && keys() 48 .anyMatch(key -> !isUninterestingKey(key))); 47 49 } 48 50 … … 59 61 @Override 60 62 public boolean isTagged() { 61 return !this.getInterestingTags().isEmpty();63 return (flags & FLAG_TAGGED) != 0; 62 64 } 63 65
Note:
See TracChangeset
for help on using the changeset viewer.