Ignore:
Timestamp:
2017-05-15T17:55:56+02:00 (7 years ago)
Author:
michael2402
Message:

Fixed checkstyle warnings.

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

Legend:

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

    r12162 r12171  
    2020 * lat/lon min/max values.  The values are rounded to LatLon.OSM_SERVER_PRECISION
    2121 *
     22 * @author imi
     23 *
    2224 * @see BBox to represent invalid areas.
    23  *
    24  * @author imi
    2525 */
    2626public class Bounds {
  • trunk/src/org/openstreetmap/josm/data/coor/ILatLon.java

    r12164 r12171  
    2222     * @return the longitude or NaN if {@link #isLatLonKnown()} returns false
    2323     */
    24     public double lon();
     24    double lon();
    2525
    2626    /**
     
    2828     * @return the latitude or NaN if {@link #isLatLonKnown()} returns false
    2929     */
    30     public double lat();
     30    double lat();
    3131
    3232    /**
  • trunk/src/org/openstreetmap/josm/data/gpx/GpxTrack.java

    r12156 r12171  
    7070     */
    7171    @FunctionalInterface
    72     public interface GpxTrackChangeListener {
     72    interface GpxTrackChangeListener {
    7373        /**
    7474         * Called when the gpx data changed.
  • trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java

    r12161 r12171  
    77package org.openstreetmap.josm.data.projection;
    88
    9 import org.openstreetmap.josm.data.coor.ILatLon;
    109import org.openstreetmap.josm.data.coor.LatLon;
    1110import org.openstreetmap.josm.tools.Utils;
  • trunk/src/org/openstreetmap/josm/data/projection/Projecting.java

    r12163 r12171  
    3636     * @param ll the geographical point to convert (in WGS84 lat/lon)
    3737     * @return the corresponding east/north coordinates
     38     * @see ILatLon#getEastNorth(Projecting) as shorthand.
    3839     * @since 12161
    39      * @see ILatLon#getEastNorth(Projecting)
    4040     */
    4141    EastNorth latlon2eastNorth(ILatLon ll);
     
    5151    /**
    5252     * Gets the base projection instance used.
     53     * This may be the same as this one or a different one if this one is translated in east/north space.
    5354     * @return The projection.
    5455     */
Note: See TracChangeset for help on using the changeset viewer.