8021577: JCK test api/javax_management/jmx_serial/modelmbean/ModelMBeanNotificationInfo/serial/index.html#Input has failed since jdk 7u45 b01
Reviewed-by: alanb, dfuchs, ahgross
This commit is contained in:
parent
eef8299094
commit
7abc885152
@ -210,11 +210,6 @@ public class MBeanNotificationInfo extends MBeanFeatureInfo implements Cloneable
|
||||
ObjectInputStream.GetField gf = ois.readFields();
|
||||
String[] t = (String[])gf.get("types", null);
|
||||
|
||||
if (t == null) {
|
||||
throw new InvalidObjectException("Trying to deserialize an invalid " +
|
||||
"instance of " + MBeanNotificationInfo.class +
|
||||
"[types=null]");
|
||||
}
|
||||
types = t.length == 0 ? t : t.clone();
|
||||
types = (t != null && t.length != 0) ? t.clone() : NO_TYPES;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user