- Timestamp:
- 2012-12-16T15:21:49+01:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/actions
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/UploadAction.java
r5497 r5621 15 15 import org.openstreetmap.josm.actions.upload.ApiPreconditionCheckerHook; 16 16 import org.openstreetmap.josm.actions.upload.DiscardTagsHook; 17 import org.openstreetmap.josm.actions.upload.FixDataHook; 17 18 import org.openstreetmap.josm.actions.upload.RelationUploadOrderHook; 18 19 import org.openstreetmap.josm.actions.upload.UploadHook; … … 53 54 private static final LinkedList<UploadHook> lateUploadHooks = new LinkedList<UploadHook>(); 54 55 static { 56 /** 57 * Calls validator before upload. 58 */ 55 59 uploadHooks.add(new ValidateUploadHook()); 60 61 /** 62 * Fixes database errors 63 */ 64 uploadHooks.add(new FixDataHook()); 65 56 66 /** 57 67 * Checks server capabilities before upload.
Note:
See TracChangeset
for help on using the changeset viewer.