diff options
author | Jung-uk Kim <jkim@FreeBSD.org> | 2013-10-09 20:36:06 +0000 |
---|---|---|
committer | Jung-uk Kim <jkim@FreeBSD.org> | 2013-10-09 20:36:06 +0000 |
commit | f78b1b9ba06ffbbdecee2801917443f79011f134 (patch) | |
tree | fc3ef7699ec2d5dff96245bc6d90117d597fb678 /java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch | |
parent | Bump PORTREVISION after plist change (diff) |
Update to Build b28.
Diffstat (limited to 'java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch')
-rw-r--r-- | java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch b/java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch deleted file mode 100644 index 55ecc7026be2..000000000000 --- a/java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch +++ /dev/null @@ -1,25 +0,0 @@ -# HG changeset patch -# User andrew -# Date 1371827420 18000 -# Node ID ae1f55ff0e864d754b3dd7f2ad86fd93062e9744 -# Parent ccd06d9c7258aea155d7053d399431bcd1af4405 -Fix up 8007471 - -diff --git a/src/share/classes/com/sun/jmx/remote/internal/ArrayNotificationBuffer.java b/src/share/classes/com/sun/jmx/remote/internal/ArrayNotificationBuffer.java ---- jdk/src/share/classes/com/sun/jmx/remote/internal/ArrayNotificationBuffer.java -+++ jdk/src/share/classes/com/sun/jmx/remote/internal/ArrayNotificationBuffer.java -@@ -402,7 +402,13 @@ - try { - ServerNotifForwarder.checkMBeanPermission(this.mBeanServer, - candidate.getObjectName(),"addNotificationListener"); -- } catch (InstanceNotFoundException | SecurityException e) { -+ } catch (InstanceNotFoundException e) { -+ if (logger.debugOn()) { -+ logger.debug("fetchNotifications", "candidate: " + candidate + " skipped. exception " + e); -+ } -+ ++nextSeq; -+ continue; -+ } catch (SecurityException e) { - if (logger.debugOn()) { - logger.debug("fetchNotifications", "candidate: " + candidate + " skipped. exception " + e); - } |