Ignore:
Timestamp:
2015-06-20T23:42:21+02:00 (9 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/data/oauth/OsmPrivileges.java

    r6066 r8510  
    1313        return allowWriteApi;
    1414    }
     15
    1516    public void setAllowWriteApi(boolean allowWriteApi) {
    1617        this.allowWriteApi = allowWriteApi;
    1718    }
     19
    1820    public boolean isAllowWriteGpx() {
    1921        return allowWriteGpx;
    2022    }
     23
    2124    public void setAllowWriteGpx(boolean allowWriteGpx) {
    2225        this.allowWriteGpx = allowWriteGpx;
    2326    }
     27
    2428    public boolean isAllowReadGpx() {
    2529        return allowReadGpx;
    2630    }
     31
    2732    public void setAllowReadGpx(boolean allowReadGpx) {
    2833        this.allowReadGpx = allowReadGpx;
    2934    }
     35
    3036    public boolean isAllowReadPrefs() {
    3137        return allowReadPrefs;
    3238    }
     39
    3340    public void setAllowReadPrefs(boolean allowReadPrefs) {
    3441        this.allowReadPrefs = allowReadPrefs;
    3542    }
     43
    3644    public boolean isAllowWritePrefs() {
    3745        return allowWritePrefs;
    3846    }
     47
    3948    public void setAllowWritePrefs(boolean allowWritePrefs) {
    4049        this.allowWritePrefs = allowWritePrefs;
Note: See TracChangeset for help on using the changeset viewer.