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/tools/Utils.java

    r10742 r10748  
    309309     *         range 0...1. If val is outside that range, return 255
    310310     */
    311     public static Integer color_float2int(Float val) {
     311    public static Integer colorFloat2int(Float val) {
    312312        if (val == null)
    313313            return null;
     
    323323     * @return corresponding float value in range 0 <= x <= 1
    324324     */
    325     public static Float color_int2float(Integer val) {
     325    public static Float colorInt2float(Integer val) {
    326326        if (val == null)
    327327            return null;
Note: See TracChangeset for help on using the changeset viewer.