Ignore:
Timestamp:
2015-05-19T00:05:33+02:00 (9 years ago)
Author:
Don-vip
Message:

convention - An open curly brace should be located at the end of a line

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/mappaint/xml/LinemodPrototype.java

    r6890 r8395  
    2929    public float getWidth(float ref) {
    3030        float res;
    31         if(widthMode == WidthMode.ABSOLUTE) {
     31        if (widthMode == WidthMode.ABSOLUTE) {
    3232            res = width;
    33         } else if(widthMode == WidthMode.OFFSET) {
     33        } else if (widthMode == WidthMode.OFFSET) {
    3434            res = ref + width;
    35         } else
    36         {
    37             if(width < 0) {
     35        } else {
     36            if (width < 0) {
    3837                res = 0;
    3938            } else {
Note: See TracChangeset for help on using the changeset viewer.