Changeset 16230 in josm
- Timestamp:
- 2020-04-04T17:02:58+02:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java
r16226 r16230 476 476 477 477 private static boolean isAllowedPhoneticCharacter(String key, int c) { 478 // CHECKSTYLE.OFF: BooleanExpressionComplexity 478 479 return c == 0x0259 || c == 0x018F // U+0259 is paired with the capital letter U+018F in Azeri, see #18740 479 480 || c == 0x0254 || c == 0x0186 // U+0254 is paired with the capital letter U+0186 in several African languages, see #18740 … … 495 496 496 497 private static boolean isUnusualBmpUse(UnicodeBlock b) { 497 // CHECKSTYLE.OFF: BooleanExpressionComplexity498 498 return b == UnicodeBlock.COMBINING_MARKS_FOR_SYMBOLS // U+20D0..U+20FF 499 499 || b == UnicodeBlock.MATHEMATICAL_OPERATORS // U+2200..U+22FF
Note:
See TracChangeset
for help on using the changeset viewer.