Ignore:
Timestamp:
2015-05-22T21:15:05+02:00 (9 years ago)
Author:
Don-vip
Message:

code style/cleanup - Uncommented Empty Constructor

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/imagery/Shape.java

    r8394 r8415  
    2121public class Shape {
    2222
    23     private List<Coordinate> coords = new ArrayList<>();
     23    private final List<Coordinate> coords = new ArrayList<>();
    2424
    2525    public Shape(String asString, String separator) {
     
    3333    }
    3434
     35    /**
     36     * Constructs a new empty {@code Shape}.
     37     */
    3538    public Shape() {
     39        // shape contents can be set later with addPoint()
    3640    }
    3741
     
    107111        return true;
    108112    }
    109 
    110 
    111113}
Note: See TracChangeset for help on using the changeset viewer.