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/io/remotecontrol/handler/RequestHandler.java

    r8470 r8510  
    3535
    3636    /** The GET request arguments */
    37     protected Map<String,String> args;
     37    protected Map<String, String> args;
    3838
    3939    /** The request URL without "GET". */
     
    220220        List<String> missingKeys = new LinkedList<>();
    221221        boolean error = false;
    222         if(mandatory != null) for (String key : mandatory) {
     222        if (mandatory != null) for (String key : mandatory) {
    223223            String value = args.get(key);
    224224            if (value == null || value.isEmpty()) {
     
    312312            super(message);
    313313        }
     314
    314315        public RequestHandlerBadRequestException(String message, Throwable cause) {
    315316            super(message, cause);
Note: See TracChangeset for help on using the changeset viewer.