Ignore:
Timestamp:
2015-06-21T01:13:09+02:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle: redundant modifiers

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/ColorScale.java

    r8510 r8512  
    8787    }
    8888
    89     public final Color getColor(double value) {
     89    public Color getColor(double value) {
    9090        if (value < min) return belowMinColor;
    9191        if (value > max) return aboveMaxColor;
     
    100100    }
    101101
    102     public final Color getColor(Number value) {
     102    public Color getColor(Number value) {
    103103        return (value == null) ? noDataColor : getColor(value.doubleValue());
    104104    }
Note: See TracChangeset for help on using the changeset viewer.