Changeset 2578 in josm for trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
- Timestamp:
- 2009-12-05T18:23:03+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/ChildRelationBrowser.java
r2512 r2578 16 16 import java.util.Set; 17 17 import java.util.Stack; 18 import java.util.logging.Logger;19 18 20 19 import javax.swing.AbstractAction; … … 54 53 */ 55 54 public class ChildRelationBrowser extends JPanel { 56 static private final Logger logger = Logger.getLogger(ChildRelationBrowser.class.getName()); 55 //static private final Logger logger = Logger.getLogger(ChildRelationBrowser.class.getName()); 57 56 58 57 /** the tree with relation children */ … … 194 193 for (int i=0; i < Math.min(selection.length,10);i++) { 195 194 Relation r = (Relation)selection[i].getLastPathComponent(); 196 if (r.incomplete) { 195 if (r.isIncomplete()) { 197 196 continue; 198 197 }
Note:
See TracChangeset
for help on using the changeset viewer.
