Changeset 35790 in osm for applications/editors/josm/plugins/http2/src/org
- Timestamp:
- 2021-07-17T14:14:21+02:00 (4 years ago)
- Location:
- applications/editors/josm/plugins/http2
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/http2
- Property svn:ignore
-
old new 2 2 build 3 3 javadoc 4 bintest
-
- Property svn:ignore
-
applications/editors/josm/plugins/http2/src/org/openstreetmap/josm/plugins/http2/Http2Client.java
r35427 r35790 46 46 @Override 47 47 protected void setupConnection(ProgressMonitor progressMonitor) throws IOException { 48 request = createRequest(); 49 50 notifyConnect(progressMonitor); 51 52 if (requiresBody()) { 53 logRequestBody(); 54 } 55 } 56 57 protected HttpRequest createRequest() throws IOException { 48 58 HttpRequest.Builder requestBuilder; 49 59 try { … … 77 87 } 78 88 } 79 request = requestBuilder.build(); 80 81 notifyConnect(progressMonitor); 82 83 if (requiresBody()) { 84 logRequestBody(); 85 } 89 return requestBuilder.build(); 86 90 } 87 91
Note:
See TracChangeset
for help on using the changeset viewer.