-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi all,
obviously it was time for me to break the build with my last patch. :)

This fixes it.

2005-11-30  Robert Schuster  <[EMAIL PROTECTED]>

        * java/beans/PropertyChangeSupport.java:
        (fireIndexedPropertyChange): Completed statement.

cya
Robert
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFDjcSqG9cfwmwwEtoRAtpcAJ0VQpbQwSoMVNwNgzH5iH75I58MQwCgmUb7
Nc3zdzDwwHgDKR+opnYL+Ss=
=x1h9
-----END PGP SIGNATURE-----
Index: java/beans/PropertyChangeSupport.java
===================================================================
RCS file: /cvsroot/classpath/classpath/java/beans/PropertyChangeSupport.java,v
retrieving revision 1.13
diff -u -r1.13 PropertyChangeSupport.java
--- java/beans/PropertyChangeSupport.java	30 Nov 2005 11:17:50 -0000	1.13
+++ java/beans/PropertyChangeSupport.java	30 Nov 2005 15:17:09 -0000
@@ -408,9 +408,10 @@
   public void fireIndexedPropertyChange(String name, int index,
                                         Object oldValue, Object newValue)
   {
-      // Argument checking is done in firePropertyChange(PropertyChangeEvent) .
-      firePropertyChange(new IndexedPropertyChangeEvent(source, name,
-                                                        oldValue, newValue,
+    // Argument checking is done in firePropertyChange(PropertyChangeEvent) .
+    firePropertyChange(new IndexedPropertyChangeEvent(source, name,
+                                                      oldValue, newValue,
+                                                      index));
   }
 
   /**
_______________________________________________
Classpath-patches mailing list
Classpath-patches@gnu.org
http://lists.gnu.org/mailman/listinfo/classpath-patches

Reply via email to