Changeset 19112 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2024-06-18T20:31:36+02:00 (16 months ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/TextTagParser.java
r19042 r19112 129 129 /** 130 130 * Check tags for correctness and display warnings if needed 131 * @param tags - map key ->value to check131 * @param tags - map key → value to check 132 132 * @param callback warning callback 133 133 * @return true if the tags should be pasted -
trunk/src/org/openstreetmap/josm/tools/Utils.java
r19109 r19112 518 518 * @param <T> type of items 519 519 * 520 * @param dependencies contains mappings (key ->value). In the final list of sorted objects, the key will come520 * @param dependencies contains mappings (key → value). In the final list of sorted objects, the key will come 521 521 * after the value. (In other words, the key depends on the value(s).) 522 522 * There must not be cyclic dependencies. -
trunk/src/org/openstreetmap/josm/tools/bugreport/BugReport.java
r18550 r19112 33 33 * ... your code ... 34 34 * } catch (RuntimeException t) { 35 * throw BugReport.intercept(t).put("id", id).put("tag", () ->x.getTag());35 * throw BugReport.intercept(t).put("id", id).put("tag", () → x.getTag()); 36 36 * } 37 37 * </pre>
Note:
See TracChangeset
for help on using the changeset viewer.