Ignore:
Timestamp:
2014-03-30T01:11:39+01:00 (10 years ago)
Author:
Don-vip
Message:

see #9667 - fix unit test

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/Selector.java

    r6927 r6949  
    260260            } else if (ChildOrParentSelectorType.SIBLING.equals(type)) {
    261261                if (e.osm instanceof Node) {
    262                     for (Way w : Utils.filteredCollection(e.osm.getReferrers(), Way.class)) {
     262                    for (Way w : Utils.filteredCollection(e.osm.getReferrers(true), Way.class)) {
    263263                        final int i = w.getNodes().indexOf(e.osm);
    264264                        if (i - 1 >= 0) {
Note: See TracChangeset for help on using the changeset viewer.