Changeset 4308 in josm
- Timestamp:
- 2011-08-10T22:50:22+02:00 (14 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui/dialogs/relation
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
r4191 r4308 416 416 } catch (Exception e) { 417 417 if (cancelled) { 418 System.out.println(tr("Warning: ignoring exception because taskis cancelled. Exception: {0}", e418 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e 419 419 .toString())); 420 420 return; … … 509 509 } catch (Exception e) { 510 510 if (cancelled) { 511 System.out.println(tr("Warning: ignoring exception because taskis cancelled. Exception: {0}", e511 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e 512 512 .toString())); 513 513 return; -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationMemberTask.java
r4154 r4308 144 144 } catch (Exception e) { 145 145 if (cancelled) { 146 System.out.println(tr("Warning: ignoring exception because taskis cancelled. Exception: {0}", e146 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e 147 147 .toString())); 148 148 return; -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/DownloadRelationTask.java
r3083 r4308 107 107 } catch (Exception e) { 108 108 if (cancelled) { 109 System.out.println(tr("Warning: ignoring exception because taskis cancelled. Exception: {0}", e109 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e 110 110 .toString())); 111 111 return; -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ParentRelationLoadingTask.java
r3225 r4308 192 192 } catch(Exception e) { 193 193 if (cancelled) { 194 System.out.println(tr("Warning: Ignoring exception because task is cancelled. Exception: {0}", e.toString()));194 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e.toString())); 195 195 return; 196 196 } -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTree.java
r4191 r4308 156 156 } catch(Exception e) { 157 157 if (cancelled) { 158 System.out.println(tr("Warning: ignoring exception because task was cancelled. Exceptionwas: {0}", e.toString()));158 System.out.println(tr("Warning: Ignoring exception because task was cancelled. Exception: {0}", e.toString())); 159 159 return; 160 160 }
Note:
See TracChangeset
for help on using the changeset viewer.