Changeset 18496 in josm for trunk/src/org
- Timestamp:
- 2022-06-21T18:31:54+02:00 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/search/SearchCompiler.java
r18494 r18496 1290 1290 } 1291 1291 1292 private Nth(int nth, boolean modulo) {1292 private Nth(int nth, boolean modulo) throws SearchParseError { 1293 1293 this.nth = nth; 1294 1294 this.modulo = modulo; 1295 if (this.modulo && this.nth == 0) { 1296 throw new SearchParseError(tr("Non-zero integer expected")); 1297 } 1295 1298 } 1296 1299
Note:
See TracChangeset
for help on using the changeset viewer.