changeset in /hg/icedtea6: 2008-08-11 Lillian Angel <langel at re...
Lillian Angel
langel at redhat.com
Mon Aug 11 12:12:16 PDT 2008
changeset bbb08c1771b2 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=bbb08c1771b2
description:
2008-08-11 Lillian Angel <langel at redhat.com>
Fixes Bug #181
* Makefile.am: Added new patch to the list.
* patches/icedtea-enum-bug-181.patch: New patch.
diffstat:
3 files changed, 18 insertions(+)
ChangeLog | 6 ++++++
Makefile.am | 1 +
patches/icedtea-enum-bug-181.patch | 11 +++++++++++
diffs (39 lines):
diff -r a86e963e785f -r bbb08c1771b2 ChangeLog
--- a/ChangeLog Fri Aug 08 12:26:14 2008 -0400
+++ b/ChangeLog Mon Aug 11 15:12:08 2008 -0400
@@ -1,3 +1,9 @@ 2008-08-08 Joshua Sumali <jsumali at redh
+2008-08-11 Lillian Angel <langel at redhat.com>
+
+ Fixes Bug #181
+ * Makefile.am: Added new patch to the list.
+ * patches/icedtea-enum-bug-181.patch: New patch.
+
2008-08-08 Joshua Sumali <jsumali at redhat.com>
* Makefile.am: Add ALT_JAR_CMD to ICEDTEA_ENV if --with-alt-jar is used.
diff -r a86e963e785f -r bbb08c1771b2 Makefile.am
--- a/Makefile.am Fri Aug 08 12:26:14 2008 -0400
+++ b/Makefile.am Mon Aug 11 15:12:08 2008 -0400
@@ -500,6 +500,7 @@ ICEDTEA_PATCHES = \
patches/icedtea-hotspot-citypeflow.patch \
patches/icedtea-alpha-fixes.patch \
patches/icedtea-alt-jar.patch \
+ patches/icedtea-enum-bu-181.patch \
$(SHARK_PATCH) \
$(GCC_PATCH) \
patches/icedtea-arch.patch
diff -r a86e963e785f -r bbb08c1771b2 patches/icedtea-enum-bug-181.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-enum-bug-181.patch Mon Aug 11 15:12:08 2008 -0400
@@ -0,0 +1,11 @@
+--- openjdkold/jdk/src/share/classes/sun/beans/editors/EnumEditor.java 2008-07-10 15:57:13.000000000 -0400
++++ openjdk/jdk/src/share/classes/sun/beans/editors/EnumEditor.java 2008-08-11 15:07:05.000000000 -0400
+@@ -67,7 +67,7 @@
+ }
+
+ public void setValue( Object value ) {
+- if ( ( value != null ) && ( this.type != value.getClass() ) ) {
++ if ( ( value != null ) && ! ( this.type.isInstance( value ) ) ) {
+ throw new IllegalArgumentException( "Unsupported value: " + value );
+ }
+ Object oldValue;
More information about the distro-pkg-dev
mailing list