@@ -51,6 +51,7 @@ Bruce Atherton | |||||
Cedomir Igaly | Cedomir Igaly | ||||
Charles Hudak | Charles Hudak | ||||
Charlie Hubbard | Charlie Hubbard | ||||
Chris Hegarty | |||||
Chris Povirk | Chris Povirk | ||||
Christian Knorr | Christian Knorr | ||||
Christian Schmidt | Christian Schmidt | ||||
@@ -403,6 +404,7 @@ Valentino Miazzo | |||||
Victor Toni | Victor Toni | ||||
Vimil Saju | Vimil Saju | ||||
Vincent Legoll | Vincent Legoll | ||||
Vincent Privat | |||||
Vitold Sedyshev | Vitold Sedyshev | ||||
Volker Leidl | Volker Leidl | ||||
Waldek Herka | Waldek Herka | ||||
@@ -30,6 +30,11 @@ Fixed bugs: | |||||
NTFS filesystems and re-created archives more often than necessary. | NTFS filesystems and re-created archives more often than necessary. | ||||
Bugzilla Report 59562 | Bugzilla Report 59562 | ||||
* AntClassLoader didn't delegate to the parent loader for classes in | |||||
the "jdk" package or one of its subpackages. This hierarchy has | |||||
been introduced with Java 7. | |||||
Bugzilla Report 59556 | |||||
Other changes: | Other changes: | ||||
-------------- | -------------- | ||||
@@ -225,6 +225,10 @@ | |||||
<first>Charlie</first> | <first>Charlie</first> | ||||
<last>Hubbard</last> | <last>Hubbard</last> | ||||
</name> | </name> | ||||
<name> | |||||
<first>Chris</first> | |||||
<last>Hegarty</last> | |||||
</name> | |||||
<name> | <name> | ||||
<first>Chris</first> | <first>Chris</first> | ||||
<last>Povirk</last> | <last>Povirk</last> | ||||
@@ -1616,6 +1620,10 @@ | |||||
<first>Vincent</first> | <first>Vincent</first> | ||||
<last>Legoll</last> | <last>Legoll</last> | ||||
</name> | </name> | ||||
<name> | |||||
<first>Vincent</first> | |||||
<last>Privat</last> | |||||
</name> | |||||
<name> | <name> | ||||
<first>Vimil</first> | <first>Vimil</first> | ||||
<last>Saju</last> | <last>Saju</last> | ||||
@@ -430,6 +430,8 @@ public final class JavaEnvUtils { | |||||
case VERSION_1_9: | case VERSION_1_9: | ||||
case VERSION_1_8: | case VERSION_1_8: | ||||
case VERSION_1_7: | case VERSION_1_7: | ||||
jrePackages.addElement("jdk"); | |||||
// fall through | |||||
case VERSION_1_6: | case VERSION_1_6: | ||||
case VERSION_1_5: | case VERSION_1_5: | ||||
//In Java1.5, the apache stuff moved. | //In Java1.5, the apache stuff moved. | ||||
@@ -483,6 +485,8 @@ public final class JavaEnvUtils { | |||||
case VERSION_1_9: | case VERSION_1_9: | ||||
case VERSION_1_8: | case VERSION_1_8: | ||||
case VERSION_1_7: | case VERSION_1_7: | ||||
tests.addElement("jdk.net.Sockets"); | |||||
// fall through | |||||
case VERSION_1_6: | case VERSION_1_6: | ||||
case VERSION_1_5: | case VERSION_1_5: | ||||
tests.addElement( | tests.addElement( | ||||