changeset in /hg/icedtea6: 2009-01-15 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Thu Jan 15 13:19:09 PST 2009


changeset 91c3966fbc7a in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=91c3966fbc7a
description:
	2009-01-15  Omair Majid  <omajid at redhat.com>

	    * patches/icedtea-a11y-property-change.patch: Removed incorrect patch.
	    * HACKING: Remove above patch.
	    * Makefile.am (ICEDTEA_PATCHES): Removed patch.

diffstat:

4 files changed, 6 insertions(+), 19 deletions(-)
ChangeLog                                  |    6 ++++++
HACKING                                    |    1 -
Makefile.am                                |    1 -
patches/icedtea-a11y-property-change.patch |   17 -----------------

diffs (56 lines):

diff -r 9ecdf73ae0e1 -r 91c3966fbc7a ChangeLog
--- a/ChangeLog	Thu Jan 15 09:14:52 2009 -0500
+++ b/ChangeLog	Thu Jan 15 16:18:23 2009 -0500
@@ -1,3 +1,9 @@ 2009-01-15  Gary Benson  <gbenson at redhat
+2009-01-15  Omair Majid  <omajid at redhat.com>
+
+	* patches/icedtea-a11y-property-change.patch: Removed incorrect patch.
+	* HACKING: Remove above patch.
+	* Makefile.am (ICEDTEA_PATCHES): Removed patch.
+
 2009-01-15  Gary Benson  <gbenson at redhat.com>
 
 	* ports/hotspot/src/cpu/zero/vm/globals_zero.hpp
diff -r 9ecdf73ae0e1 -r 91c3966fbc7a HACKING
--- a/HACKING	Thu Jan 15 09:14:52 2009 -0500
+++ b/HACKING	Thu Jan 15 16:18:23 2009 -0500
@@ -78,7 +78,6 @@ The following patches are currently appl
 * icedtea-format-warnings.patch: Fix build failures with -Wformat=1.
 * icedtea-io_util-overflow.patch: Replace some code to correctly handle overflows. (S6788196)
 * icedtea-cc-interp-jvmti.patch: Disable some JVMTI capabilities which are unsupported or do not work with the C++ interpreter.
-* icedtea-a11y-property-change.patch: Dont fire PropertyChangeEvent if the property hasnt changed.
 * icedtea-demo-swingapplet.patch: Add missing html file needed to run the demo.
 * icedtea-6791168.patch: Fix build failure with GCC-4.4 (PR 38725) and compiler warnings.
 * icedtea-no-precompiled.patch: Don't use precompiled header files in hotspot.
diff -r 9ecdf73ae0e1 -r 91c3966fbc7a Makefile.am
--- a/Makefile.am	Thu Jan 15 09:14:52 2009 -0500
+++ b/Makefile.am	Thu Jan 15 16:18:23 2009 -0500
@@ -690,7 +690,6 @@ endif
 
 ICEDTEA_PATCHES += \
 	$(DISTRIBUTION_PATCHES) \
-	patches/icedtea-a11y-property-change.patch \
 	patches/icedtea-demo-swingapplet.patch \
 	patches/icedtea-awt-window-size.patch
 
diff -r 9ecdf73ae0e1 -r 91c3966fbc7a patches/icedtea-a11y-property-change.patch
--- a/patches/icedtea-a11y-property-change.patch	Thu Jan 15 09:14:52 2009 -0500
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
---- AccessibleContext.java.orig	2008-12-24 11:33:22.000000000 -0500
-+++ openjdk/jdk/src/share/classes/javax/accessibility/AccessibleContext.java	2008-12-24 11:35:29.000000000 -0500
-@@ -736,6 +736,14 @@
-                                    Object oldValue,
-                                    Object newValue) {
-         if (accessibleChangeSupport != null) {
-+
-+            if (oldValue == newValue) {
-+                return;
-+            }
-+            if (oldValue != null && newValue != null && oldValue.equals(newValue)) {
-+                return;
-+            }
-+
-             if (newValue instanceof PropertyChangeEvent) {
-                 PropertyChangeEvent pce = (PropertyChangeEvent)newValue;
-                 accessibleChangeSupport.firePropertyChange(pce);



More information about the distro-pkg-dev mailing list