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

code style/cleanup - Uncommented Empty Constructor

Location:
trunk/src/org/openstreetmap/josm/data/projection/datum
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShift.java

    r8308 r8415  
    5555     */
    5656    public NTV2GridShift() {
    57     }
    58 
     57        // contents can be set later with setters
     58    }
     59
     60    /**
     61     * Constructs a new {@code NTV2GridShift} from a {@code LatLon}.
     62     * @param p lat/lon
     63     */
    5964    public NTV2GridShift(LatLon p) {
    6065        setLatDegrees(p.lat());
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShiftFile.java

    r8379 r8415  
    8383    private NTV2SubGrid lastSubGrid;
    8484
    85     /**
    86      * Constructs a new {@code NTV2GridShiftFile}.
    87      */
    88     public NTV2GridShiftFile() {
    89     }
    90 
    9185    private void readBytes(InputStream in, byte[] b) throws IOException {
    9286        if (in.read(b) < b.length) {
Note: See TracChangeset for help on using the changeset viewer.