Changeset 12548 in josm


Ignore:
Timestamp:
2017-07-31T23:30:52+02:00 (7 years ago)
Author:
Don-vip
Message:

sonar - squid:S2196 - Switches should be used for sequences of simple "String" tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/tools/template_engine/TemplateParserTest.java

    r11974 r12548  
    107107                    return null;
    108108            } else {
    109                 if ("name".equals(name))
     109                switch (name) {
     110                case "name":
    110111                    return "waypointName";
    111                 else if ("number".equals(name))
     112                case "number":
    112113                    return 10;
    113                 else if ("special:key".equals(name))
     114                case "special:key":
    114115                    return "specialKey";
    115                 else
     116                default:
    116117                    return null;
     118                }
    117119            }
    118120        }
Note: See TracChangeset for help on using the changeset viewer.