Changeset 6946 in josm


Ignore:
Timestamp:
2014-03-29T18:36:17+01:00 (10 years ago)
Author:
Don-vip
Message:

fix #9875 - disable jsse.enableSNIExtension

File:
1 edited

Legend:

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

    r6941 r6946  
    1919import java.lang.reflect.Field;
    2020import java.util.ArrayList;
    21 import java.util.Arrays;
    2221import java.util.Collection;
    2322import java.util.Collections;
     
    12791278            // Ignore all exceptions
    12801279        }
     1280        // Workaround to fix a Java "feature"
     1281        // See http://stackoverflow.com/q/7615645/2257172 and #9875
     1282        updateSystemProperty("jsse.enableSNIExtension", "false");
    12811283        // Workaround to fix another Java bug
    12821284        // Force Java 7 to use old sorting algorithm of Arrays.sort (fix #8712).
Note: See TracChangeset for help on using the changeset viewer.