changeset 1523:813f65587cf8

2009-05-13 Lillian Angel <langel@redhat.com> * patches/icedtea-enum-bug-181.patch: Removed.
author Lillian Angel <langel@redhat.com>
date Wed, 13 May 2009 14:43:36 -0400
parents 370d4ef5ff5c
children d634a26fa3ce
files ChangeLog patches/icedtea-enum-bug-181.patch
diffstat 2 files changed, 4 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Wed May 13 13:55:55 2009 -0400
+++ b/ChangeLog	Wed May 13 14:43:36 2009 -0400
@@ -1,3 +1,7 @@
+2009-05-13  Lillian Angel  <langel@redhat.com>
+
+	* patches/icedtea-enum-bug-181.patch: Removed.
+
 2009-05-13  Lillian Angel  <langel@redhat.com>
 
 	* patches/icedtea-certbundle.patch: Removed.
--- a/patches/icedtea-enum-bug-181.patch	Wed May 13 13:55:55 2009 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,11 +0,0 @@
---- 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;