Ignore:
Timestamp:
2016-07-30T16:27:16+02:00 (8 years ago)
Author:
Don-vip
Message:

sonar - pmd:UseVarargs - Use Varargs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/widgets/QuadStateCheckBox.java

    r10672 r10680  
    5353     * @param allowed The allowed states
    5454     */
    55     public QuadStateCheckBox(String text, Icon icon, State initial, State[] allowed) {
     55    public QuadStateCheckBox(String text, Icon icon, State initial, State ... allowed) {
    5656        super(text, icon);
    5757        this.allowed = Utils.copyArray(allowed);
     
    8686     * @param allowed The allowed states
    8787     */
    88     public QuadStateCheckBox(String text, State initial, State[] allowed) {
     88    public QuadStateCheckBox(String text, State initial, State ... allowed) {
    8989        this(text, null, initial, allowed);
    9090    }
Note: See TracChangeset for help on using the changeset viewer.