changeset 4944:c00efeece9f2

Handle NullPointerException in getNotificationInfo
author andrew
date Fri, 14 Jun 2013 10:05:04 +0100
parents 649b424bb842
children 0ab2712a035a
files src/share/classes/javax/management/StandardEmitterMBean.java
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/share/classes/javax/management/StandardEmitterMBean.java	Wed Jun 12 11:48:21 2013 +0100
+++ b/src/share/classes/javax/management/StandardEmitterMBean.java	Fri Jun 14 10:05:04 2013 +0100
@@ -258,8 +258,8 @@
     }
 
     public MBeanNotificationInfo[] getNotificationInfo() {
-        if (notificationInfo.length == 0) {
-            return notificationInfo;
+        if (notificationInfo == null || notificationInfo.length == 0) {
+            return NO_NOTIFICATION_INFO;
         } else {
             return notificationInfo.clone();
         }