Ignore:
Timestamp:
2015-06-03T13:24:59+02:00 (10 years ago)
Author:
Don-vip
Message:

javadoc / Unit test fixes

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

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/tools/Geometry.java

    r8449 r8459  
    411411     * @return segmentP1 if it is the closest point, segmentP2 if it is the closest point,
    412412     * a new point if closest point is between segmentP1 and segmentP2.
     413     * @see #closestPointToLine
    413414     * @since 3650
    414      * @see #closestPointToLine
    415415     */
    416416    public static EastNorth closestPointToSegment(EastNorth segmentP1, EastNorth segmentP2, EastNorth point) {
  • trunk/src/org/openstreetmap/josm/tools/ImageProvider.java

    r8443 r8459  
    381381     * Set image width
    382382     * @param width final width of the image
     383     * @return the current object, for convenience
    383384     * @see #setSize
    384      * @return the current object, for convenience
    385385     */
    386386    public ImageProvider setWidth(int width) {
     
    392392     * Set image height
    393393     * @param height final height of the image
     394     * @return the current object, for convenience
    394395     * @see #setSize
    395      * @return the current object, for convenience
    396396     */
    397397    public ImageProvider setHeight(int height) {
     
    13531353     * @throws IllegalArgumentException if <code>input</code> is <code>null</code>.
    13541354     * @throws IOException if an error occurs during reading.
     1355     * @see BufferedImage#getProperty
    13551356     * @since 7132
    1356      * @see BufferedImage#getProperty
    13571357     */
    13581358    public static BufferedImage read(File input, boolean readMetadata, boolean enforceTransparency) throws IOException {
Note: See TracChangeset for help on using the changeset viewer.