Ignore:
Timestamp:
2010-09-15T18:59:53+02:00 (14 years ago)
Author:
stoecker
Message:

remove tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/osmarender/src/org/openstreetmap/josm/plugins/osmarender/OsmarenderPlugin.java

    r21423 r23192  
    8080                        for (Node n : ((Way) p).getNodes()) {
    8181                            if (n.getCoor().isWithin(b))
    82                                 parents.add(n);
     82                                parents.add(n);
    8383                        }
    8484                    }
     
    8787                // Write ways
    8888                for (OsmPrimitive p: parents) {
    89                         if (p instanceof Way) {
    90                                 w.visit((Way)p);
    91                         }
     89                    if (p instanceof Way) {
     90                        w.visit((Way)p);
     91                    }
    9292                }
    9393
    9494                // Write relations (should be parent relation also written?)
    9595                for (OsmPrimitive p: parents) {
    96                         if (p instanceof Relation) {
    97                                 w.visit((Relation)p);
    98                         }
     96                    if (p instanceof Relation) {
     97                        w.visit((Relation)p);
     98                    }
    9999                }
    100100
     
    120120
    121121    public OsmarenderPlugin(PluginInformation info) throws IOException {
    122         super(info);
     122        super(info);
    123123        osmarenderMenu = MainMenu.add(Main.main.menu.viewMenu, new Action());
    124124        osmarenderMenu.setVisible(false);
Note: See TracChangeset for help on using the changeset viewer.