- Timestamp:
- 2014-02-19T19:12:39+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r6852 r6875 578 578 } 579 579 580 pr ivateString sendRequest(String requestMethod, String urlSuffix,String requestBody, ProgressMonitor monitor) throws OsmTransferException {580 protected final String sendRequest(String requestMethod, String urlSuffix,String requestBody, ProgressMonitor monitor) throws OsmTransferException { 581 581 return sendRequest(requestMethod, urlSuffix, requestBody, monitor, true, false); 582 582 } … … 601 601 * been exhausted), or rewrapping a Java exception. 602 602 */ 603 pr ivateString sendRequest(String requestMethod, String urlSuffix,String requestBody, ProgressMonitor monitor, boolean doAuthenticate, boolean fastFail) throws OsmTransferException {603 protected final String sendRequest(String requestMethod, String urlSuffix,String requestBody, ProgressMonitor monitor, boolean doAuthenticate, boolean fastFail) throws OsmTransferException { 604 604 StringBuilder responseBody = new StringBuilder(); 605 605 int retries = fastFail ? 0 : getMaxRetries();
Note:
See TracChangeset
for help on using the changeset viewer.