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

Replace non-working Sun bugtracker links to new OpenJDK one

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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");
Note: See TracChangeset for help on using the changeset viewer.