You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/01/30 14:51:30 UTC

svn commit: r1065270 - /commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java

Author: simonetripodi
Date: Sun Jan 30 13:51:30 2011
New Revision: 1065270

URL: http://svn.apache.org/viewvc?rev=1065270&view=rev
Log:
ObjectCreateRule has to be public

Modified:
    commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java

Modified: commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java
URL: http://svn.apache.org/viewvc/commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java?rev=1065270&r1=1065269&r2=1065270&view=diff
==============================================================================
--- commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java (original)
+++ commons/sandbox/digester3/trunk/src/main/java/org/apache/commons/digester3/ObjectCreateRule.java Sun Jan 30 13:51:30 2011
@@ -24,7 +24,7 @@ import org.xml.sax.Attributes;
  * onto the object stack.  When the element is complete, the
  * object will be popped
  */
-class ObjectCreateRule extends Rule {
+public class ObjectCreateRule extends Rule {
 
     /**
      * The Java class name of the object to be created.