Ignore:
Timestamp:
2016-01-07T18:13:44+01:00 (8 years ago)
Author:
bastiK
Message:

mapcss: basic support for :selected pseudoclass (see #9891)

File:
1 edited

Legend:

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

    r9284 r9341  
    124124        if (bd.get(i) == lower) {
    125125            if (upper > bd.get(i+1))
    126                 throw new StyleCache.RangeViolatedError("the new range must be within a single subrange (1)");
     126                throw new RangeViolatedError("the new range must be within a single subrange (1)");
    127127            if (data.get(i) != null)
    128                 throw new StyleCache.RangeViolatedError("the new range must be within a subrange that has no data");
     128                throw new RangeViolatedError("the new range must be within a subrange that has no data");
    129129
    130130            if (bd.get(i+1) == upper) {
     
    142142        } else {
    143143            if (bd.get(i) < upper)
    144                 throw new StyleCache.RangeViolatedError("the new range must be within a single subrange (2)");
     144                throw new RangeViolatedError("the new range must be within a single subrange (2)");
    145145            if (data.get(i-1) != null)
    146146                throw new AssertionError();
Note: See TracChangeset for help on using the changeset viewer.