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

remove tabs

Location:
applications/editors/josm/plugins/tracer/src/org/openstreetmap/josm/plugins/tracer
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/tracer/src/org/openstreetmap/josm/plugins/tracer/ConnectWays.java

    r21852 r23191  
    4040        LinkedList<Command> cmds = new LinkedList<Command>();
    4141        Way newWay = new Way(way);
    42         for (int i = 0; i < way.getNodesCount() - 1; i++) { 
    43             Node n = way.getNode(i); 
     42        for (int i = 0; i < way.getNodesCount() - 1; i++) {
     43            Node n = way.getNode(i);
    4444            System.out.println("-------");
    4545            System.out.println("Node: " + n);
     
    9393    private static List<Command> mergeNodes(Node n1, Node n2, Way way){
    9494        List<Command> cmds = new LinkedList<Command>();
    95         cmds.add(new MoveCommand(n2, 
    96                  (n1.getEastNorth().getX() - n2.getEastNorth().getX())/2, 
     95        cmds.add(new MoveCommand(n2,
     96                 (n1.getEastNorth().getX() - n2.getEastNorth().getX())/2,
    9797                 (n1.getEastNorth().getY() - n2.getEastNorth().getY())/2
    9898                 ));
     
    123123    private static void tryConnectNodeToAnyWay(Node node, Map<Way, Way> m)
    124124            throws IllegalStateException, IndexOutOfBoundsException {
    125        
     125
    126126        List<Command> cmds = new LinkedList<Command>();
    127127
  • applications/editors/josm/plugins/tracer/src/org/openstreetmap/josm/plugins/tracer/TracerServer.java

    r19881 r23191  
    1616
    1717    static final String URL = "http://localhost:5050/";
    18    
     18
    1919    public TracerServer() {
    2020
    2121    }
    22    
     22
    2323    /**
    2424     * Call Trace server.
Note: See TracChangeset for help on using the changeset viewer.