Ignore:
Timestamp:
2017-03-19T15:55:27+01:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle - NoWhiteSpaceBefore ...

File:
1 edited

Legend:

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

    r11105 r11747  
    131131     * @param buttonTexts  String Array of the text that will appear on the buttons. The first button is the default one.
    132132     */
    133     public ExtendedDialog(Component parent, String title, String ... buttonTexts) {
     133    public ExtendedDialog(Component parent, String title, String... buttonTexts) {
    134134        this(parent, title, buttonTexts, true, true);
    135135    }
     
    178178     * @return {@code this}
    179179     */
    180     public ExtendedDialog setButtonIcons(Icon ... buttonIcons) {
     180    public ExtendedDialog setButtonIcons(Icon... buttonIcons) {
    181181        this.bIcons = Utils.copyArray(buttonIcons);
    182182        return this;
     
    188188     * @return {@code this}
    189189     */
    190     public ExtendedDialog setButtonIcons(String ... buttonIcons) {
     190    public ExtendedDialog setButtonIcons(String... buttonIcons) {
    191191        bIcons = new Icon[buttonIcons.length];
    192192        for (int i = 0; i < buttonIcons.length; ++i) {
     
    203203     * @return {@code this}
    204204     */
    205     public ExtendedDialog setToolTipTexts(String ... toolTipTexts) {
     205    public ExtendedDialog setToolTipTexts(String... toolTipTexts) {
    206206        this.bToolTipTexts = Utils.copyArray(toolTipTexts);
    207207        return this;
Note: See TracChangeset for help on using the changeset viewer.