Changeset 6617 in josm for trunk


Ignore:
Timestamp:
2014-01-03T23:05:54+01:00 (11 years ago)
Author:
Don-vip
Message:

Replace non-working Sun bugtracker links to new OpenJDK one

Location:
trunk/src
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/kitfox/svg/SVGUniverse.java

    r6002 r6617  
    389389            {
    390390                //Workaround for resources stored in jars loaded by Webstart.
    391                 //http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6753651
     391                //https://bugs.openjdk.java.net/browse/JDK-6753651
    392392                url = SVGUniverse.class.getResource("xmlBase.getPath()");
    393393            }
  • trunk/src/org/openstreetmap/josm/data/Preferences.java

    r6599 r6617  
    12611261        // Workaround to fix a Java bug.
    12621262        // Force AWT toolkit to update its internal preferences (fix #3645).
    1263         // This ugly hack comes from Sun bug database: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6292739
     1263        // This ugly hack comes from Sun bug database: https://bugs.openjdk.java.net/browse/JDK-6292739
    12641264        try {
    12651265            Field field = Toolkit.class.getDeclaredField("resources");
     
    12711271        // Workaround to fix another Java bug
    12721272        // Force Java 7 to use old sorting algorithm of Arrays.sort (fix #8712).
    1273         // See Oracle bug database: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=7075600
    1274         // and http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6923200
     1273        // See Oracle bug database: https://bugs.openjdk.java.net/browse/JDK-7075600
     1274        // and https://bugs.openjdk.java.net/browse/JDK-6923200
    12751275        if (Main.pref.getBoolean("jdk.Arrays.useLegacyMergeSort", !Version.getInstance().isLocalBuild())) {
    12761276            updateSystemProperty("java.util.Arrays.useLegacyMergeSort", "true");
  • trunk/src/org/openstreetmap/josm/gui/widgets/JosmPasswordField.java

    r6248 r6617  
    1515/**
    1616 * A subclass of {@link JPasswordField} to implement a workaround to
    17  * <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6322854">JDK bug 6322854</a>.
     17 * <a href="https://bugs.openjdk.java.net/browse/JDK-6322854">JDK bug 6322854</a>.
    1818 * This class can be deleted after Oracle decides to fix this bug...
    1919 *
     
    9191   
    9292    /**
    93      * Implements a workaround to <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6322854">JDK bug 6322854</a>.
     93     * Implements a workaround to <a href="https://bugs.openjdk.java.net/browse/JDK-6322854">JDK bug 6322854</a>.
    9494     * @param text The {@link JTextComponent} to protect.
    9595     */
     
    107107                        Main.error("NullPointerException occured because of JDK bug 6322854. "
    108108                                +"Copy/Paste operation has not been performed. Please complain to Oracle: "+
    109                                 "http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6322854");
     109                                "https://bugs.openjdk.java.net/browse/JDK-6322854");
    110110                    }
    111111                }
  • trunk/src/org/openstreetmap/josm/io/MirroredInputStream.java

    r6380 r6617  
    279279     * Manually follows redirects because
    280280     * {@link HttpURLConnection#setFollowRedirects(boolean)} fails if the redirect
    281      * is going from a http to a https URL, see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4620571">bug report</a>.
     281     * is going from a http to a https URL, see <a href="https://bugs.openjdk.java.net/browse/JDK-4620571">bug report</a>.
    282282     * <p>
    283283     * This can causes problems when downloading from certain GitHub URLs.
  • trunk/src/org/openstreetmap/josm/tools/Utils.java

    r6615 r6617  
    752752     * An alternative to {@link String#trim()} to effectively remove all leading and trailing white characters, including Unicode ones.
    753753     * @see <a href="http://closingbraces.net/2008/11/11/javastringtrim/">Java’s String.trim has a strange idea of whitespace</a>
    754      * @see <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4080617">JDK bug 4080617</a>
     754     * @see <a href="https://bugs.openjdk.java.net/browse/JDK-4080617">JDK bug 4080617</a>
    755755     * @param str The string to strip
    756756     * @return <code>str</code>, without leading and trailing characters, according to
Note: See TracChangeset for help on using the changeset viewer.