Changeset 14754 in josm for trunk/src/org
- Timestamp:
- 2019-01-31T09:57:29+01:00 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r14732 r14754 232 232 boolean isFirstLine = true; 233 233 String line; 234 while ((line = reader.readLine()) != null && (tagcheckerfile || !line.isEmpty())) { 235 if (line.startsWith("#")) { 234 while ((line = reader.readLine()) != null) { 235 if (line.isEmpty()) { 236 // ignore 237 } else if (line.startsWith("#")) { 236 238 if (line.startsWith("# JOSM TagChecker")) { 237 239 tagcheckerfile = true;
Note:
See TracChangeset
for help on using the changeset viewer.