Ignore:
Timestamp:
2016-08-06T19:21:33+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - squid:S00100 - Method names should comply with a naming convention

File:
1 edited

Legend:

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

    r9371 r10748  
    147147        float alpha = c.get(TEXT_OPACITY, 1f, Float.class);
    148148        color = new Color(color.getRed(), color.getGreen(),
    149                 color.getBlue(), Utils.color_float2int(alpha));
     149                color.getBlue(), Utils.colorFloat2int(alpha));
    150150
    151151        Float haloRadius = c.get(TEXT_HALO_RADIUS, null, Float.class);
     
    158158            float haloAlpha = c.get(TEXT_HALO_OPACITY, 1f, Float.class);
    159159            haloColor = new Color(haloColor.getRed(), haloColor.getGreen(),
    160                     haloColor.getBlue(), Utils.color_float2int(haloAlpha));
     160                    haloColor.getBlue(), Utils.colorFloat2int(haloAlpha));
    161161        }
    162162
Note: See TracChangeset for help on using the changeset viewer.