Changeset 14695 in josm for trunk


Ignore:
Timestamp:
2019-01-13T15:28:01+01:00 (5 years ago)
Author:
Don-vip
Message:

It's 2019 and Oracle has finally discovered what HTTPS is about

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/build.xml

    r14638 r14695  
    402402                linksource="true"
    403403                author="false">
    404             <link href="http://docs.oracle.com/javase/8/docs/api"/>
     404            <link href="https://docs.oracle.com/javase/8/docs/api"/>
    405405            <doctitle><![CDATA[<h2>JOSM - Javadoc</h2>]]></doctitle>
    406406            <bottom><![CDATA[<a href="https://josm.openstreetmap.de/">JOSM</a>]]></bottom>
  • trunk/src/org/openstreetmap/josm/actions/ToggleAction.java

    r12620 r14695  
    122122     * @param e ActionEvent that trigerred the action
    123123     * @see <a href="https://weblogs.java.net/blog/zixle/archive/2005/11/changes_to_acti.html">Changes to Actions in 1.6</a>
    124      * @see <a href="http://docs.oracle.com/javase/6/docs/api/javax/swing/Action.html">Interface Action</a>
     124     * @see <a href="https://docs.oracle.com/javase/6/docs/api/javax/swing/Action.html">Interface Action</a>
    125125     */
    126126    protected final void toggleSelectedState(ActionEvent e) {
  • trunk/src/org/openstreetmap/josm/gui/MainApplication.java

    r14326 r14695  
    11081108        UIManager.put("OptionPane.noIcon", UIManager.get("OptionPane.cancelIcon"));
    11091109        // Ensures caret color is the same than text foreground color, see #12257
    1110         // See http://docs.oracle.com/javase/8/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html
     1110        // See https://docs.oracle.com/javase/8/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html
    11111111        for (String p : Arrays.asList(
    11121112                "EditorPane", "FormattedTextField", "PasswordField", "TextArea", "TextField", "TextPane")) {
  • trunk/src/org/openstreetmap/josm/gui/util/GuiHelper.java

    r14463 r14695  
    190190    /**
    191191     * Executes asynchronously a runnable in
    192      * <a href="http://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
     192     * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
    193193     * @param task The runnable to execute
    194194     * @see SwingUtilities#invokeLater
     
    208208    /**
    209209     * Executes synchronously a runnable in
    210      * <a href="http://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
     210     * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
    211211     * @param task The runnable to execute
    212212     * @see SwingUtilities#invokeAndWait
     
    226226    /**
    227227     * Executes synchronously a runnable in
    228      * <a href="http://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
     228     * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.
    229229     * <p>
    230230     * Passes on the exception that was thrown to the thread calling this.
     
    248248    /**
    249249     * Executes synchronously a callable in
    250      * <a href="http://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>
     250     * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>
    251251     * and return a value.
    252252     * @param <V> the result type of method <code>call</code>
  • trunk/src/org/openstreetmap/josm/tools/I18n.java

    r14660 r14695  
    362362        // Look up SPI providers first (for JosmDecimalFormatSymbolsProvider).
    363363        // Enable CLDR locale provider on Java 8 to get additional languages, such as Khmer.
    364         // http://docs.oracle.com/javase/8/docs/technotes/guides/intl/enhancements.8.html#cldr
     364        // https://docs.oracle.com/javase/8/docs/technotes/guides/intl/enhancements.8.html#cldr
    365365        // FIXME: This must be updated after we switch to Java 9.
    366366        // See https://docs.oracle.com/javase/9/docs/api/java/util/spi/LocaleServiceProvider.html
  • trunk/src/org/openstreetmap/josm/tools/ImageProvider.java

    r14506 r14695  
    19041904     * @return the {@code TransparentColor} defined in image reader metadata, or {@code null}
    19051905     * @throws IOException if an error occurs during reading
    1906      * @see <a href="http://docs.oracle.com/javase/8/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a>
     1906     * @see <a href="https://docs.oracle.com/javase/8/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a>
    19071907     * @since 7499
    19081908     */
Note: See TracChangeset for help on using the changeset viewer.