Changeset 18360 in josm
- Timestamp:
- 2022-01-02T21:24:43+01:00 (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/imagery/Shape.java
r18341 r18360 1 1 // License: GPL. For details, see LICENSE file. 2 2 package org.openstreetmap.josm.data.imagery; 3 4 import static org.openstreetmap.josm.tools.I18n.tr; 3 5 4 6 import java.awt.Polygon; … … 13 15 import org.openstreetmap.josm.data.coor.LatLon; 14 16 import org.openstreetmap.josm.tools.CheckParameterUtil; 15 16 import static org.openstreetmap.josm.tools.I18n.tr;17 17 18 18 /** … … 88 88 /** 89 89 * Check if the coordinates are inside this shape. 90 * @see Polygon#contains(int, int)91 90 * @param latlon The latlon to look for 92 91 * @return {@code true} if the LatLon is inside the shape. 92 * @see Polygon#contains(int, int) 93 93 */ 94 94 public boolean contains(LatLon latlon) { -
trunk/test/unit/org/openstreetmap/josm/data/projection/proj/AbstractProjTest.java
r18353 r18360 37 37 public Bounds getAlgorithmBounds() { 38 38 return null; 39 }}; 39 } 40 }; 40 41 41 42 @Test -
trunk/tools/ivy.xml
r18358 r18360 17 17 <dependency org="net.java.dev.javacc" name="javacc" rev="7.0.10" conf="javacc->default"/> 18 18 <!-- checkstyle->default --> 19 <dependency org="com.puppycrawl.tools" name="checkstyle" rev="9.2" conf="checkstyle->default"/> 19 <dependency org="com.puppycrawl.tools" name="checkstyle" rev="9.2.1" conf="checkstyle->default"/> 20 20 <!-- proguard->default --> 21 21 <dependency org="com.guardsquare" name="proguard-ant" rev="7.2.0-beta5" conf="proguard->default"/>
Note:
See TracChangeset
for help on using the changeset viewer.