Changeset 8340 in josm
- Timestamp:
- 2015-05-08T07:48:59+02:00 (10 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io/remotecontrol
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpServer.java
r8339 r8340 61 61 try { 62 62 instance4.stopServer(); 63 instance4 = null;64 63 } catch (IOException ioe) { 65 64 Main.error(ioe); 66 65 } 66 instance4 = null; 67 67 } 68 68 if (instance6 != null) { 69 69 try { 70 70 instance6.stopServer(); 71 instance6 = null;72 71 } catch (IOException ioe) { 73 72 Main.error(ioe); 74 73 } 74 instance6 = null; 75 75 } 76 76 } -
trunk/src/org/openstreetmap/josm/io/remotecontrol/RemoteControlHttpsServer.java
r8339 r8340 351 351 try { 352 352 instance4.stopServer(); 353 instance4 = null;354 353 } catch (IOException ioe) { 355 354 Main.error(ioe); 356 355 } 356 instance4 = null; 357 357 } 358 358 if (instance6 != null) { 359 359 try { 360 360 instance6.stopServer(); 361 instance6 = null;362 361 } catch (IOException ioe) { 363 362 Main.error(ioe); 364 363 } 364 instance6 = null; 365 365 } 366 366 }
Note:
See TracChangeset
for help on using the changeset viewer.