Ignore:
Timestamp:
17.06.2009 10:04:22 (3 years ago)
Author:
stoecker
Message:

remove all these ugly tab stops introduced in the last half year

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/visitor/CreateOsmChangeVisitor.java

    r1523 r1677  
    3838        // need to set osmConform = false here so that negative IDs get transmitted. 
    3939        // this also enables unnecessary and (if the API were more strict) potentially 
    40         // harmful action="..." attributes.  
     40        // harmful action="..." attributes. 
    4141        osmwriter = new OsmWriter(writer, false, api.getVersion()); 
    4242        osmwriter.setChangeset(changeset); 
     
    4545    // FIXME: This should really NOT use a visitor pattern, it looks 
    4646    // stupid. Just have one method named "write" instead of three "visit"s. 
    47      
     47 
    4848    public void visit(Node n) { 
    4949        if (n.deleted) { 
     
    7979        } 
    8080    } 
    81      
     81 
    8282    private void switchMode(String newMode) { 
    8383        if ((newMode != null && !newMode.equals(currentMode))||(newMode == null && currentMode != null)) { 
Note: See TracChangeset for help on using the changeset viewer.