Ignore:
Timestamp:
2015-09-24T23:56:05+02:00 (9 years ago)
Author:
Don-vip
Message:

fix javadoc errors/warnings seen with JDK9

Location:
trunk/src/org/openstreetmap/josm/gui
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java

    r8736 r8795  
    177177     * exception is thrown, a message box will be displayed and closeDialog
    178178     * is called. finish() is called in any case.
     179     * @throws SAXException if a SAX error occurs
     180     * @throws IOException if an I/O error occurs
     181     * @throws OsmTransferException if a communication error with the OSM server occurs
    179182     */
    180183    protected abstract void realRun() throws SAXException, IOException, OsmTransferException;
  • trunk/src/org/openstreetmap/josm/gui/mappaint/mapcss/ExpressionFactory.java

    r8775 r8795  
    565565
    566566        /**
    567          * Function associated to the logical ">=" operator.
     567         * Function associated to the logical ">=" operator.
    568568         * @param a first value
    569569         * @param b second value
    570          * @return {@code true} if {@code a >= b}
     570         * @return {@code true} if {@code a >= b}
    571571         */
    572572        public static boolean greater_equal(float a, float b) {
     
    575575
    576576        /**
    577          * Function associated to the logical "<=" operator.
     577         * Function associated to the logical "&lt;=" operator.
    578578         * @param a first value
    579579         * @param b second value
    580          * @return {@code true} if {@code a <= b}
     580         * @return {@code true} if {@code a &lt;= b}
    581581         */
    582582        public static boolean less_equal(float a, float b) {
     
    585585
    586586        /**
    587          * Function associated to the logical ">" operator.
     587         * Function associated to the logical "&gt;" operator.
    588588         * @param a first value
    589589         * @param b second value
    590          * @return {@code true} if {@code a > b}
     590         * @return {@code true} if {@code a &gt; b}
    591591         */
    592592        public static boolean greater(float a, float b) {
     
    595595
    596596        /**
    597          * Function associated to the logical "<" operator.
     597         * Function associated to the logical "&lt;" operator.
    598598         * @param a first value
    599599         * @param b second value
    600          * @return {@code true} if {@code a < b}
     600         * @return {@code true} if {@code a &lt; b}
    601601         */
    602602        public static boolean less(float a, float b) {
  • trunk/src/org/openstreetmap/josm/gui/widgets/AbstractFileChooser.java

    r8440 r8795  
    179179     * Pops up an "Open File" file chooser dialog. Note that the
    180180     * text that appears in the approve button is determined by
    181      * the L&F.
     181     * the L&amp;F.
    182182     *
    183183     * @param    parent  the parent component of the dialog,
     
    199199     * Pops up a "Save File" file chooser dialog. Note that the
    200200     * text that appears in the approve button is determined by
    201      * the L&F.
     201     * the L&amp;F.
    202202     *
    203203     * @param    parent  the parent component of the dialog,
Note: See TracChangeset for help on using the changeset viewer.