Changeset 15233 in josm for trunk/src/org
- Timestamp:
- 2019-07-08T00:33:39+02:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/progress/NullProgressMonitor.java
r14153 r15233 57 57 @Override 58 58 public void indeterminateSubTask(String title) { 59 Logging.debug(title); 59 if (title != null) 60 Logging.debug(title); 60 61 } 61 62 -
trunk/src/org/openstreetmap/josm/tools/HttpClient.java
r15229 r15233 176 176 maxRedirects--; 177 177 Logging.info(tr("Download redirected to ''{0}''", redirectLocation)); 178 return connect(); 178 response = connect(); 179 successfulConnection = true; 180 return response; 179 181 } else if (maxRedirects == 0) { 180 182 String msg = tr("Too many redirects to the download URL detected. Aborting."); … … 534 536 */ 535 537 public final byte[] getRequestBody() { 536 return requestBody; 538 return Utils.copyArray(requestBody); 537 539 } 538 540
Note:
See TracChangeset
for help on using the changeset viewer.