- Timestamp:
- 2020-01-10T00:10:45+01:00 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/Http1Client.java
r15229 r15674 75 75 @Override 76 76 protected ConnectionResponse performConnection() throws IOException { 77 connection.connect(); 77 try { 78 connection.connect(); 79 } catch (RuntimeException e) { 80 throw new IOException(e); 81 } 78 82 return new ConnectionResponse() { 79 83 @Override
Note:
See TracChangeset
for help on using the changeset viewer.