Changeset 32085 in osm


Ignore:
Timestamp:
2016-02-28T23:27:13+01:00 (9 years ago)
Author:
donvip
Message:

update to checkstyle 6.16

Location:
applications/viewer/jmapviewer
Files:
1 added
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • applications/viewer/jmapviewer/build.xml

    r31904 r32085  
    7878    <target name="checkstyle">
    7979        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties"
    80                 classpath="tools/checkstyle/checkstyle-6.14.1-all.jar"/>
     80                classpath="tools/checkstyle/checkstyle-6.16-all.jar"/>
    8181        <checkstyle config="tools/checkstyle/jmapviewer_checks.xml">
    8282            <fileset dir="${basedir}/src" includes="**/*.java" />
  • applications/viewer/jmapviewer/src/org/openstreetmap/gui/jmapviewer/tilesources/TMSTileSource.java

    r32025 r32085  
    99import org.openstreetmap.gui.jmapviewer.interfaces.ICoordinate;
    1010
     11/**
     12 * TMS tile source.
     13 */
    1114public class TMSTileSource extends AbstractTMSTileSource {
    1215
     
    1518    protected OsmMercator osmMercator;
    1619
     20    /**
     21     * Constructs a new {@code TMSTileSource}.
     22     * @param info tile source information
     23     */
    1724    public TMSTileSource(TileSourceInfo info) {
    1825        super(info);
     
    3138        return (maxZoom == 0) ? super.getMaxZoom() : maxZoom;
    3239    }
     40
    3341    @Override
    3442    public double getDistance(double lat1, double lon1, double lat2, double lon2) {
Note: See TracChangeset for help on using the changeset viewer.