Changeset 12490 in josm
- Timestamp:
- 2017-07-22T16:23:11+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/placement
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/placement/CompletelyInsideAreaStrategy.java
r12477 r12490 137 137 return true; 138 138 } 139 if (obj == null) { 140 return false; 141 } 142 if (getClass() != obj.getClass()) { 139 if (obj == null || getClass() != obj.getClass()) { 143 140 return false; 144 141 } -
trunk/src/org/openstreetmap/josm/gui/mappaint/styleelement/placement/OnLineStrategy.java
r12477 r12490 363 363 return true; 364 364 } 365 if (obj == null) { 366 return false; 367 } 368 if (getClass() != obj.getClass()) { 365 if (obj == null || getClass() != obj.getClass()) { 369 366 return false; 370 367 }
Note:
See TracChangeset
for help on using the changeset viewer.