Ignore:
Timestamp:
2010-06-09T22:14:06+02:00 (14 years ago)
Author:
jttt
Message:

Fix some of "Keystroke %s is already assigned to %s, will be overridden by %s" warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/AutoScaleAction.java

    r3251 r3327  
    7272    }
    7373
     74    public static void autoScale(String mode) {
     75        new AutoScaleAction(mode, false).autoScale();
     76    }
     77
    7478    private final String mode;
    7579
     
    101105        return shortcut;
    102106    }
     107
     108    /**
     109     *
     110     * @param mode
     111     * @param marker Used only to differentiate from default constructor
     112     */
     113    private AutoScaleAction(String mode, boolean marker) {
     114        super(false);
     115        this.mode = mode;
     116    }
     117
    103118
    104119    public AutoScaleAction(String mode) {
Note: See TracChangeset for help on using the changeset viewer.