summaryrefslogtreecommitdiff
path: root/java/openjdk6/files/icedtea/security/20130618/8007471-6_fixup.patch
diff options
context:
space:
mode:
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.patch25
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);
- }