Ignore:
Timestamp:
2018-03-04T01:20:15+01:00 (6 years ago)
Author:
Don-vip
Message:

see #11924, see #15560, see #16048 - tt HTML tag is deprecated in HTML5: use code instead

Location:
trunk/src/org/openstreetmap/josm/io
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/ChangesetQuery.java

    r12743 r13493  
    350350         * @param message the detail message. The detail message is saved for later retrieval by the {@link #getMessage()} method.
    351351         * @param  cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
    352          *         (A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.)
     352         *         (A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.)
    353353         */
    354354        public ChangesetQueryUrlException(String message, Throwable cause) {
     
    358358        /**
    359359         * Constructs a new {@code ChangesetQueryUrlException} with the specified cause and a detail message of
    360          * <tt>(cause==null ? null : cause.toString())</tt> (which typically contains the class and detail message of <tt>cause</tt>).
     360         * <code>(cause==null ? null : cause.toString())</code> (which typically contains the class and detail message of <code>cause</code>).
    361361         *
    362362         * @param  cause the cause (which is saved for later retrieval by the {@link #getCause()} method).
    363          *         (A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.)
     363         *         (A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.)
    364364         */
    365365        public ChangesetQueryUrlException(Throwable cause) {
  • trunk/src/org/openstreetmap/josm/io/DefaultProxySelector.java

    r12846 r13493  
    5151    /**
    5252     * The {@link ProxySelector} provided by the JDK will retrieve proxy information
    53      * from the system settings, if the system property <tt>java.net.useSystemProxies</tt>
     53     * from the system settings, if the system property <code>java.net.useSystemProxies</code>
    5454     * is defined <strong>at startup</strong>. It has no effect if the property is set
    5555     * later by the application.
     
    6767    /**
    6868     * The {@link ProxySelector} provided by the JDK will retrieve proxy information
    69      * from the system settings, if the system property <tt>java.net.useSystemProxies</tt>
     69     * from the system settings, if the system property <code>java.net.useSystemProxies</code>
    7070     * is defined <strong>at startup</strong>. If the property is set later by the application,
    7171     * this has no effect.
    7272     *
    73      * @return true, if <tt>java.net.useSystemProxies</tt> was set to true at class initialization time
     73     * @return true, if <code>java.net.useSystemProxies</code> was set to true at class initialization time
    7474     *
    7575     */
  • trunk/src/org/openstreetmap/josm/io/OsmApiException.java

    r12992 r13493  
    7171    /**
    7272     * Constructs an {@code OsmApiException} with the specified cause and a detail message of
    73      * <tt>(cause==null ? null : cause.toString())</tt>
    74      * (which typically contains the class and detail message of <tt>cause</tt>).
     73     * <code>(cause==null ? null : cause.toString())</code>
     74     * (which typically contains the class and detail message of <code>cause</code>).
    7575     *
    7676     * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method).
    77      *              A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.
     77     *              A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
    7878     */
    7979    public OsmApiException(Throwable cause) {
  • trunk/src/org/openstreetmap/josm/io/OsmApiInitializationException.java

    r6070 r13493  
    2020    /**
    2121     * Constructs an {@code OsmApiInitializationException} with the specified cause and a detail message of
    22      * <tt>(cause==null ? null : cause.toString())</tt>
    23      * (which typically contains the class and detail message of <tt>cause</tt>).
     22     * <code>(cause==null ? null : cause.toString())</code>
     23     * (which typically contains the class and detail message of <code>cause</code>).
    2424     *
    2525     * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method).
    26      *              A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.
     26     *              A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
    2727     */
    2828    public OsmApiInitializationException(Throwable cause) {
  • trunk/src/org/openstreetmap/josm/io/OsmServerBackreferenceReader.java

    r12713 r13493  
    170170    /**
    171171     * Scans a dataset for incomplete primitives. Depending on the configuration of this reader
    172      * incomplete primitives are read from the server with an individual <tt>/api/0.6/[way,relation]/#id/full</tt>
     172     * incomplete primitives are read from the server with an individual <code>/api/0.6/[way,relation]/#id/full</code>
    173173     * request.
    174174     *
  • trunk/src/org/openstreetmap/josm/io/OsmTransferCanceledException.java

    r8415 r13493  
    1919     * Constructs a new {@code OsmTransferCanceledException}, with given root cause.
    2020     * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method).
    21      *              A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.
     21     *              A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
    2222     */
    2323    public OsmTransferCanceledException(Throwable cause) {
  • trunk/src/org/openstreetmap/josm/io/OsmTransferException.java

    r6070 r13493  
    2828    /**
    2929     * Constructs an {@code OsmTransferException} with the specified cause and a detail message of
    30      * <tt>(cause==null ? null : cause.toString())</tt>
    31      * (which typically contains the class and detail message of <tt>cause</tt>).
     30     * <code>(cause==null ? null : cause.toString())</code>
     31     * (which typically contains the class and detail message of <code>cause</code>).
    3232     *
    3333     * @param cause the cause (which is saved for later retrieval by the {@link #getCause} method).
    34      *              A <tt>null</tt> value is permitted, and indicates that the cause is nonexistent or unknown.
     34     *              A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
    3535     */
    3636    public OsmTransferException(Throwable cause) {
Note: See TracChangeset for help on using the changeset viewer.