Ignore:
Timestamp:
2014-02-10T00:51:53+01:00 (12 years ago)
Author:
Don-vip
Message:

javadoc fixes for jdk8 compatibility

File:
1 edited

Legend:

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

    r6823 r6830  
    261261
    262262    /**
    263      * convert float range 0 <= x <= 1 to integer range 0..255
     263     * convert float range 0 &lt;= x &lt;= 1 to integer range 0..255
    264264     * when dealing with colors and color alpha value
    265265     * @return null if val is null, the corresponding int if val is in the
     
    275275
    276276    /**
    277      * convert integer range 0..255 to float range 0 <= x <= 1
     277     * convert integer range 0..255 to float range 0 &lt;= x &lt;= 1
    278278     * when dealing with colors and color alpha value
    279279     */
     
    317317
    318318    /**
    319      * Simple file copy function that will overwrite the target file.<br/>
     319     * Simple file copy function that will overwrite the target file.<br>
    320320     * Taken from <a href="http://www.rgagnon.com/javadetails/java-0064.html">this article</a> (CC-NC-BY-SA)
    321321     * @param in The source file
     
    526526     * Topological sort.
    527527     *
    528      * @param dependencies contains mappings (key -> value). In the final list of sorted objects, the key will come
     528     * @param dependencies contains mappings (key -&gt; value). In the final list of sorted objects, the key will come
    529529     * after the value. (In other words, the key depends on the value(s).)
    530530     * There must not be cyclic dependencies.
     
    836836     * @param elapsedTime The duration in milliseconds
    837837     * @return A human readable string for the given duration
    838      * @throws IllegalArgumentException if elapsedTime is < 0
     838     * @throws IllegalArgumentException if elapsedTime is &lt; 0
    839839     * @since 6354
    840840     */
     
    867867    /**
    868868     * Returns a human readable representation of a list of positions.
    869      * <p/>
     869     * <p>
    870870     * For instance, {@code [1,5,2,6,7} yields "1-2,5-7
    871871     * @param positionList a list of positions
Note: See TracChangeset for help on using the changeset viewer.