You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2012/02/15 19:37:15 UTC

svn commit: r1244637 - /directory/shared/trunk/ldap/model/src/main/antlr/schema.g

Author: elecharny
Date: Wed Feb 15 18:37:15 2012
New Revision: 1244637

URL: http://svn.apache.org/viewvc?rev=1244637&view=rev
Log:
Fixed a compilation failure

Modified:
    directory/shared/trunk/ldap/model/src/main/antlr/schema.g

Modified: directory/shared/trunk/ldap/model/src/main/antlr/schema.g
URL: http://svn.apache.org/viewvc/directory/shared/trunk/ldap/model/src/main/antlr/schema.g?rev=1244637&r1=1244636&r2=1244637&view=diff
==============================================================================
--- directory/shared/trunk/ldap/model/src/main/antlr/schema.g (original)
+++ directory/shared/trunk/ldap/model/src/main/antlr/schema.g Wed Feb 15 18:37:15 2012
@@ -663,13 +663,13 @@ ditContentRuleDescription returns [DitCo
      * ruleid = number
      * </pre>
     */
-ditStructureRuleDescription returns [DITStructureRule ditStructureRule]
+ditStructureRuleDescription returns [DitStructureRule ditStructureRule]
     {
         matchedProduction( "ditStructureRuleDescription()" );
         ElementTracker et = new ElementTracker();
     }
     :
-    ( ruleid:STARTNUMERICOID { ditStructureRule = new DITStructureRule(ruleid(ruleid.getText())); } )
+    ( ruleid:STARTNUMERICOID { ditStructureRule = new DitStructureRule(ruleid(ruleid.getText())); } )
     (
         ( name:NAME { et.track("NAME", name); ditStructureRule.setNames(qdescrs(name.getText())); } )
         |