Ignore:
Timestamp:
2017-02-25T20:47:05+01:00 (9 years ago)
Author:
Don-vip
Message:

checkstyle - enable CatchParameterName rule

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpServer.java

    r10627 r11620  
    103103                Socket request = server.accept();
    104104                RequestProcessor.processRequest(request);
    105             } catch (SocketException se) {
     105            } catch (SocketException e) {
    106106                if (!server.isClosed()) {
    107                     Main.error(se);
     107                    Main.error(e);
    108108                } else {
    109109                    // stop the thread automatically if server is stopped
Note: See TracChangeset for help on using the changeset viewer.