Changeset 7298 in josm
- Timestamp:
- 2014-07-09T11:52:22+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/MapCSSTagChecker.java
r7276 r7298 503 503 * @return all errors for the given primitive, with or without those of "info" severity 504 504 */ 505 public Collection<TestError> getErrorsForPrimitive(OsmPrimitive p, boolean includeOtherSeverity) {505 public synchronized Collection<TestError> getErrorsForPrimitive(OsmPrimitive p, boolean includeOtherSeverity) { 506 506 final ArrayList<TestError> r = new ArrayList<>(); 507 507 final Environment env = new Environment(p, new MultiCascade(), Environment.DEFAULT_LAYER, null); … … 585 585 586 586 @Override 587 public int hashCode() {587 public synchronized int hashCode() { 588 588 final int prime = 31; 589 589 int result = super.hashCode(); … … 593 593 594 594 @Override 595 public boolean equals(Object obj) {595 public synchronized boolean equals(Object obj) { 596 596 if (this == obj) 597 597 return true;
Note:
See TracChangeset
for help on using the changeset viewer.