Changeset 16347 in josm for trunk/src/org/openstreetmap
- Timestamp:
- 2020-04-18T20:11:49+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/OverpassTurboQueryWizard.java
r16337 r16347 168 168 /** 169 169 * Quotes the given string for its use in Overpass QL 170 * @param s the string to quote 171 * @return the quoted string 170 172 */ 171 173 private static String quote(final String s) { … … 175 177 /** 176 178 * Normalizes the match to disjunctive normal form: A∧(B∨C) ⇔ (A∧B)∨(A∧C) 179 * @param match the match to normalize 180 * @return the match in disjunctive normal form 177 181 */ 178 182 private static List<Match> normalizeToDNF(final Match match) {
Note:
See TracChangeset
for help on using the changeset viewer.