Ignore:
Timestamp:
2016-08-06T19:21:33+02:00 (10 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/LineElement.java

    r10378 r10748  
    256256        }
    257257
    258         Integer pAlpha = Utils.color_float2int(c.get(type.prefix + OPACITY, null, Float.class));
     258        Integer pAlpha = Utils.colorFloat2int(c.get(type.prefix + OPACITY, null, Float.class));
    259259        if (pAlpha != null) {
    260260            alpha = pAlpha;
     
    281281        Color dashesBackground = c.get(type.prefix + DASHES_BACKGROUND_COLOR, null, Color.class);
    282282        if (dashesBackground != null) {
    283             pAlpha = Utils.color_float2int(c.get(type.prefix + DASHES_BACKGROUND_OPACITY, null, Float.class));
     283            pAlpha = Utils.colorFloat2int(c.get(type.prefix + DASHES_BACKGROUND_OPACITY, null, Float.class));
    284284            if (pAlpha != null) {
    285285                alpha = pAlpha;
Note: See TracChangeset for help on using the changeset viewer.