Ignore:
Timestamp:
2020-08-23T15:31:04+02:00 (4 years ago)
Author:
simon04
Message:

fix #19698 - Refactoring: make private fields final

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/gpx/GpxDrawHelper.java

    r16864 r16913  
    176176
    177177    // setup color maps used by heat map
    178     private static Color[] heatMapLutColorJosmInferno = createColorFromResource("inferno");
    179     private static Color[] heatMapLutColorJosmViridis = createColorFromResource("viridis");
    180     private static Color[] heatMapLutColorJosmBrown2Green = createColorFromResource("brown2green");
    181     private static Color[] heatMapLutColorJosmRed2Blue = createColorFromResource("red2blue");
    182 
    183     private static Color[] rtkLibQualityColors = {
     178    private static final Color[] heatMapLutColorJosmInferno = createColorFromResource("inferno");
     179    private static final Color[] heatMapLutColorJosmViridis = createColorFromResource("viridis");
     180    private static final Color[] heatMapLutColorJosmBrown2Green = createColorFromResource("brown2green");
     181    private static final Color[] heatMapLutColorJosmRed2Blue = createColorFromResource("red2blue");
     182
     183    private static final Color[] rtkLibQualityColors = {
    184184        Color.GREEN, // Fixed, solution by carrier‐based relative positioning and the integer ambiguity is properly resolved.
    185185        Color.ORANGE, // Float, solution by carrier‐based relative positioning but the integer ambiguity is not resolved.
Note: See TracChangeset for help on using the changeset viewer.