Ignore:
Timestamp:
2008-07-24T09:53:50+02:00 (16 years ago)
Author:
stoecker
Message:

skip not-uploaded stuff for ignore

Location:
applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/TestError.java

    r9269 r9270  
    146146                for (OsmPrimitive o : primitives)
    147147                {
     148                        // ignore data not yet uploaded
     149                        if(o.id == 0)
     150                                return null;
    148151                        String type = "u";
    149152                        if (o instanceof Way) type = "w";
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidateAction.java

    r9269 r9270  
    103103                        for(TestError error : errors)
    104104                        {
    105                                 if(plugin.validationDialog.ignoredErrors.contains(error.getIgnoreState()))
     105                                String state = error.getIgnoreState();
     106                                if(state != null && plugin.validationDialog.ignoredErrors.contains(state))
    106107                                {
    107108                                        error.setIgnored(true);
  • applications/editors/josm/plugins/validator/src/org/openstreetmap/josm/plugins/validator/ValidatorDialog.java

    r9269 r9270  
    215215                                        TestError error = (TestError)nodeInfo;
    216216                                        String state = error.getIgnoreState();
    217                                         ignoredErrors.add(state);
     217                                        if(state != null)
     218                                                ignoredErrors.add(state);
    218219                                        changed = true;
    219220                                        error.setIgnored(true);
Note: See TracChangeset for help on using the changeset viewer.