-
Bug
-
Resolution: Won't Fix
-
P2
-
9
There is no test specifically testing fix for JDK-8148786.
A duplicate (JDK-8149727) contains quite ready-to-use code:
// The following code fails with "IS NULL2":
for (int i = 0; i < types.length; i++) {
if (types[i].getInternalType() == null) {
throw new AssertionError("IS NULL1");
}
itypes[i] = types[i].getInternalType();
}
for (int i = 0; i < itypes.length; ++i) {
if (itypes[i] == null) {
throw new AssertionError("IS NULL2");
}
}
A duplicate (
// The following code fails with "IS NULL2":
for (int i = 0; i < types.length; i++) {
if (types[i].getInternalType() == null) {
throw new AssertionError("IS NULL1");
}
itypes[i] = types[i].getInternalType();
}
for (int i = 0; i < itypes.length; ++i) {
if (itypes[i] == null) {
throw new AssertionError("IS NULL2");
}
}
- relates to
-
JDK-8148786 xml.transform fails on x86-64
-
- Resolved
-