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:
Jaroslav Bachorik 2013-07-29 04:43:41 -07:00
parent eef8299094
commit 7abc885152

View File

@ -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;
}
}