Ignore:
Timestamp:
2015-05-09T12:49:35+02:00 (11 years ago)
Author:
Don-vip
Message:

code style - Close curly brace and the next "else", "catch" and "finally" keywords should be located on the same line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/actions/mapmode/ExtrudeAction.java

    r8338 r8342  
    529529                    // double click adds a new node
    530530                    addNewNode(e);
    531                 }
    532                 else if (e.getPoint().distance(initialMousePos) > initialMoveThreshold && newN1en != null && selectedSegment != null) {
     531                } else if (e.getPoint().distance(initialMousePos) > initialMoveThreshold && newN1en != null && selectedSegment != null) {
    533532                    // main extrusion commands
    534533                    performExtrusion();
     
    11771176
    11781177            return new Line2D.Double(start, new Point2D.Double(start.getX() + (unitvector.getX() * linelength) , start.getY() + (unitvector.getY() * linelength)));
    1179         }
    1180         catch (NoninvertibleTransformException e) {
     1178        } catch (NoninvertibleTransformException e) {
    11811179            return new Line2D.Double(start, new Point2D.Double(start.getX() + (unitvector.getX() * 10) , start.getY() + (unitvector.getY() * 10)));
    11821180        }
Note: See TracChangeset for help on using the changeset viewer.