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

checkstyle: enable relevant whitespace checks and fix them

Location:
trunk/test/unit/org/openstreetmap/josm/io/remotecontrol
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/RemoteControlTest.java

    r7937 r8510  
    7272                    return null;
    7373                }
     74
    7475                public void checkClientTrusted(X509Certificate[] certs, String authType) {
    7576                }
     77
    7678                public void checkServerTrusted(X509Certificate[] certs, String authType) {
    7779                }
     
    137139            try (BufferedReader in = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8))) {
    138140                String s;
    139                 while((s = in.readLine()) != null) {
     141                while ((s = in.readLine()) != null) {
    140142                    responseBody.append(s);
    141143                    responseBody.append("\n");
  • trunk/test/unit/org/openstreetmap/josm/io/remotecontrol/handler/RequestHandlerTest.java

    r8509 r8510  
    4343    }
    4444
    45 
    4645    @Test
    4746    public void testRequestParameter1() {
Note: See TracChangeset for help on using the changeset viewer.