Changeset 10589 in josm for trunk


Ignore:
Timestamp:
2016-07-22T23:12:10+02:00 (8 years ago)
Author:
Don-vip
Message:

see #12472 - fix "Non-exhaustive switch" compilation warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Condition.java

    r10300 r10589  
    147147            case CONTAINS:
    148148                return testString != null && testString.contains(prototypeString);
     149            case GREATER_OR_EQUAL:
     150            case GREATER:
     151            case LESS_OR_EQUAL:
     152            case LESS:
     153                // See below
     154                break;
     155            default:
     156                throw new AssertionError();
    149157            }
    150158
Note: See TracChangeset for help on using the changeset viewer.