Ignore:
Timestamp:
2013-09-21T00:10:46+02:00 (13 years ago)
Author:
Don-vip
Message:

fix more warnings/javadoc in data.validation.tests

File:
1 edited

Legend:

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

    r6240 r6241  
    8383        private Collection<Node> nodes = new LinkedList<Node>();
    8484        private Collection<Way> ways = new LinkedList<Way>();
    85         private Collection<Way> closedways = new LinkedList<Way>();
    8685        private Collection<Way> openways = new LinkedList<Way>();
    8786        private Collection<Relation> relations = new LinkedList<Relation>();
     
    129128                } else if(m.isWay()) {
    130129                    ri.ways.add(m.getWay());
    131                     if (m.getWay().isClosed()) {
    132                         ri.closedways.add(m.getWay());
    133                     } else {
     130                    if (!m.getWay().isClosed()) {
    134131                        ri.openways.add(m.getWay());
    135132                    }
Note: See TracChangeset for help on using the changeset viewer.