Ignore:
Timestamp:
2015-12-31T16:37:24+01:00 (8 years ago)
Author:
Don-vip
Message:

fix javadoc errors/warnings

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

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java

    r8846 r9230  
    1717 *   {@link OsmPrimitive} from the dataset in another layer or the one retrieved from the server.</li>
    1818 * </ul>
    19  *
    20  *
     19 * @since 1750
    2120 */
    22 public class  Conflict<T extends OsmPrimitive> {
     21public class Conflict<T extends OsmPrimitive> {
    2322    private final T my;
    2423    private final T their;
  • trunk/src/org/openstreetmap/josm/data/projection/datum/NTV2GridShift.java

    r8415 r9230  
    2323
    2424import org.openstreetmap.josm.data.coor.LatLon;
     25import org.openstreetmap.josm.data.projection.Ellipsoid;
    2526
    2627/**
     
    3940    private static final long serialVersionUID = 1L;
    4041
    41     private static final double METRE_PER_SECOND = 2.0 * Math.PI * 6378137.0 / 3600.0 / 360.0;
     42    private static final double METRE_PER_SECOND = 2.0 * Math.PI * Ellipsoid.WGS84.a / 3600.0 / 360.0;
    4243    private static final double RADIANS_PER_SECOND = 2.0 * Math.PI / 3600.0 / 360.0;
    4344    private double lon;
Note: See TracChangeset for help on using the changeset viewer.