Add JDK roots to the beginning of the roots list

This behavior was used until 6a1b6d10d8, where the JDK has
unintentionally started to be added to the end of the list, breaking
code which depended on libraries which bundle something from the JDK

 #KT-21299 Fixed
This commit is contained in:
Alexander Udalov
2017-11-28 16:31:47 +01:00
parent d976eeabf7
commit d4b5032810
8 changed files with 33 additions and 3 deletions
@@ -0,0 +1,5 @@
package java.util;
public class Date {
public static void methodWhichDoesNotExistInJdk() {}
}