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/mapcss/ExpressionFactory.java

    r10715 r10748  
    327327         */
    328328        public static float red(Color c) { // NO_UCD (unused code)
    329             return Utils.color_int2float(c.getRed());
     329            return Utils.colorInt2float(c.getRed());
    330330        }
    331331
     
    337337         */
    338338        public static float green(Color c) { // NO_UCD (unused code)
    339             return Utils.color_int2float(c.getGreen());
     339            return Utils.colorInt2float(c.getGreen());
    340340        }
    341341
     
    347347         */
    348348        public static float blue(Color c) { // NO_UCD (unused code)
    349             return Utils.color_int2float(c.getBlue());
     349            return Utils.colorInt2float(c.getBlue());
    350350        }
    351351
     
    357357         */
    358358        public static float alpha(Color c) { // NO_UCD (unused code)
    359             return Utils.color_int2float(c.getAlpha());
     359            return Utils.colorInt2float(c.getAlpha());
    360360        }
    361361
Note: See TracChangeset for help on using the changeset viewer.