Changeset 16652 in josm for trunk/src


Ignore:
Timestamp:
2020-06-16T12:02:08+02:00 (5 years ago)
Author:
GerdP
Message:

see #19312: fix unit tests

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/validation/tests/RelationChecker.java

    r16651 r16652  
    459459     */
    460460    public static List<Relation> checkAddMember(Relation parent, Relation child) {
    461         if (parent == null || child == null || child.isIncomplete())
     461        if (parent == null || child == null)
    462462            return Collections.emptyList();
    463463        RelationChecker test = new RelationChecker();
Note: See TracChangeset for help on using the changeset viewer.