Changeset 16230 in josm for trunk


Ignore:
Timestamp:
2020-04-04T17:02:58+02:00 (4 years ago)
Author:
Don-vip
Message:

see #18740 - checkstyle

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/TagChecker.java

    r16226 r16230  
    476476
    477477    private static boolean isAllowedPhoneticCharacter(String key, int c) {
     478        // CHECKSTYLE.OFF: BooleanExpressionComplexity
    478479        return c == 0x0259 || c == 0x018F // U+0259 is paired with the capital letter U+018F in Azeri, see #18740
    479480            || c == 0x0254 || c == 0x0186 // U+0254 is paired with the capital letter U+0186 in several African languages, see #18740
     
    495496
    496497    private static boolean isUnusualBmpUse(UnicodeBlock b) {
    497         // CHECKSTYLE.OFF: BooleanExpressionComplexity
    498498        return b == UnicodeBlock.COMBINING_MARKS_FOR_SYMBOLS            // U+20D0..U+20FF
    499499            || b == UnicodeBlock.MATHEMATICAL_OPERATORS                 // U+2200..U+22FF
Note: See TracChangeset for help on using the changeset viewer.