Changeset 10880 in josm for trunk/src/org/openstreetmap/josm/actions/upload/ValidateUploadHook.java
- Timestamp:
- 2016-08-23T22:07:06+02:00 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/upload/ValidateUploadHook.java
r10448 r10880 61 61 test.visit(selection); 62 62 test.endTest(); 63 if (ValidatorPreference.PREF_OTHER.get() && 64 Main.pref.getBoolean(ValidatorPreference.PREF_OTHER_UPLOAD, false)) { 63 if (ValidatorPreference.PREF_OTHER.get() && ValidatorPreference.PREF_OTHER_UPLOAD.get()) { 65 64 errors.addAll(test.getErrors()); 66 65 } else { … … 83 82 return true; 84 83 85 if ( Main.pref.getBoolean(ValidatorPreference.PREF_USE_IGNORE, true)) {84 if (ValidatorPreference.PREF_USE_IGNORE.get()) { 86 85 int nume = 0; 87 86 for (TestError error : errors) {
Note:
See TracChangeset
for help on using the changeset viewer.
