Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (11 years ago)
Author:
Don-vip
Message:

checkstyle: enable relevant whitespace checks and fix them

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/MultikeyShortcutAction.java

    r7937 r8510  
    2323        public char getShortcut() {
    2424            if (index < 9)
    25                 return (char)('1' + index);
     25                return (char) ('1' + index);
    2626            else if (index == 9)
    2727                return '0';
    2828            else
    29                 return (char)('A' +  index - 10);
     29                return (char) ('A' +  index - 10);
    3030        }
    3131
     
    3838
    3939    void executeMultikeyAction(int index, boolean repeatLastAction);
     40
    4041    List<MultikeyInfo> getMultikeyCombinations();
     42
    4143    MultikeyInfo getLastMultikeyAction();
    4244
Note: See TracChangeset for help on using the changeset viewer.