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

fix javadoc errors/warnings seen with JDK9

Location:
trunk/src/org/openstreetmap/josm/data
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/cache/ICachedLoaderJob.java

    r8673 r8795  
    4343     *
    4444     * @param listener cache loader listener
    45      * @param force true if the load should skip all the caches (local & remote)
     45     * @param force true if the load should skip all the caches (local & remote)
    4646     * @throws IOException on failure from getUrl() call
    4747     */
  • trunk/src/org/openstreetmap/josm/data/gpx/GpxConstants.java

    r8512 r8795  
    5353    String PT_TIME = "time";
    5454
    55     /** Magnetic variation (in degrees) at the point. 0.0 <= value < 360.0 */
     55    /** Magnetic variation (in degrees) at the point. 0.0 &lt;= value &lt; 360.0 */
    5656    String PT_MAGVAR = "magvar";
    5757
     
    8383    String PT_AGEOFDGPSDATA = "ageofdgpsdata";
    8484
    85     /** Represents a differential GPS station. 0 <= value <= 1023 */
     85    /** Represents a differential GPS station. 0 &lt;= value &lt;= 1023 */
    8686    String PT_DGPSID = "dgpsid";
    8787
  • trunk/src/org/openstreetmap/josm/data/projection/Ellipsoid.java

    r8510 r8795  
    2525
    2626    /**
    27      * Australian National Spheroid (Australian Natl & S. Amer. 1969)
     27     * Australian National Spheroid (Australian Natl &amp; S. Amer. 1969)
    2828     * same as GRS67 Modified
    2929     */
  • trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java

    r8510 r8795  
    3434 * <p>
    3535 * <ul>
    36  *   <li>Validate <code>true</code> or <code>false</code>:</li>
     36 *   <li>Validate <code>true</code> or <code>false</code>:
    3737 *   <ul>
    3838 *     <li><code>boolean valid = validator.isValid(value);</code></li>
    39  *   </ul>
    40  *   <li>Validate returning an aggregated String of the matched groups:</li>
     39 *   </ul></li>
     40 *   <li>Validate returning an aggregated String of the matched groups:
    4141 *   <ul>
    4242 *     <li><code>String result = validator.validate(value);</code></li>
    43  *   </ul>
    44  *   <li>Validate returning the matched groups:</li>
     43 *   </ul></li>
     44 *   <li>Validate returning the matched groups:
    4545 *   <ul>
    4646 *     <li><code>String[] result = validator.match(value);</code></li>
    47  *   </ul>
     47 *   </ul></li>
    4848 * </ul>
    4949 * <p>
  • trunk/src/org/openstreetmap/josm/data/validation/routines/UrlValidator.java

    r8510 r8795  
    2828/**
    2929 * <p><b>URL Validation</b> routines.</p>
    30  * Behavior of validation is modified by passing in options:
     30 * Behavior of validation is modified by passing in options:<ul>
    3131 * <li>ALLOW_2_SLASHES - [FALSE]  Allows double '/' characters in the path
    3232 * component.</li>
     
    3535 * <li>ALLOW_ALL_SCHEMES - [FALSE] By default only http, https, and ftp are
    3636 * considered valid schemes.  Enabling this option will let any scheme pass validation.</li>
    37  *
     37 * </ul>
    3838 * <p>Originally based in on php script by Debbie Dyer, validation.php v1.2b, Date: 03/07/02,
    3939 * http://javascript.internet.com. However, this validation now bears little resemblance
Note: See TracChangeset for help on using the changeset viewer.