Ticket #3489: fixpattern.patch
| File fixpattern.patch, 612 bytes (added by , 16 years ago) |
|---|
-
src/org/openstreetmap/josm/actions/UploadAction.java
327 327 return; 328 328 } 329 329 pattern ="The changeset (\\d+) was closed at (.*)"; 330 p = Pattern.compile(pattern); 330 331 m = p.matcher(e.getErrorHeader()); 331 332 if (m.matches()) { 332 333 handleUploadConflictForClosedChangeset(Long.parseLong(m.group(1)), DateUtils.fromString(m.group(2)));
