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/gui/mappaint/Environment.java

    r8291 r8415  
    4747     * Creates a new uninitialized environment.
    4848     */
    49     public Environment() {}
     49    public Environment() {
     50        // environment can be initialized later through with* methods
     51    }
     52
     53    /**
     54     * Creates a new environment.
     55     * @since 8415
     56     */
     57    public Environment(OsmPrimitive osm) {
     58        this.osm = osm;
     59    }
    5060
    5161    /**
Note: See TracChangeset for help on using the changeset viewer.