I'm checking this in.

I noticed that a couple methods that I implemented were still marked
as stubs... oops.

Tom

2006-04-14  Tom Tromey  <[EMAIL PROTECTED]>

        * java/beans/beancontext/BeanContextSupport.java (hasNext): No longer
        a stub.
        (next): Likewise.

Index: java/beans/beancontext/BeanContextSupport.java
===================================================================
RCS file: 
/cvsroot/classpath/classpath/java/beans/beancontext/BeanContextSupport.java,v
retrieving revision 1.9
diff -u -r1.9 BeanContextSupport.java
--- java/beans/beancontext/BeanContextSupport.java      7 Apr 2006 16:25:56 
-0000       1.9
+++ java/beans/beancontext/BeanContextSupport.java      14 Apr 2006 15:05:12 
-0000
@@ -108,13 +108,11 @@
     }
 
     public boolean hasNext ()
-      throws NotImplementedException
     {
       return child.hasNext();
     }
 
     public Object next ()
-      throws NotImplementedException
     {
       return child.next();
     }

Reply via email to