You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by py...@apache.org on 2007/07/17 11:36:35 UTC

svn commit: r556865 - /harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java

Author: pyang
Date: Tue Jul 17 02:36:33 2007
New Revision: 556865

URL: http://svn.apache.org/viewvc?view=rev&rev=556865
Log:
BeanContextSupport.remove(Object, boolean) should be a protected method

Modified:
    harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java

Modified: harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java?view=diff&rev=556865&r1=556864&r2=556865
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java (original)
+++ harmony/enhanced/classlib/trunk/modules/beans/src/main/java/java/beans/beancontext/BeanContextSupport.java Tue Jul 17 02:36:33 2007
@@ -926,7 +926,7 @@
      * @throws IllegalArgumentException if the child is null
      * @throws IllegalStateException if the child is not valid to remove
      */
-    public boolean remove(Object child, boolean setChildBC) {
+    protected boolean remove(Object child, boolean setChildBC) {
         if (child == null) {
             throw new IllegalArgumentException("null child");
         }