You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2006/04/22 22:41:13 UTC

svn commit: r396161 - /xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java

Author: mrglavas
Date: Sat Apr 22 13:41:11 2006
New Revision: 396161

URL: http://svn.apache.org/viewcvs?rev=396161&view=rev
Log:
Fix typo in method name.

Modified:
    xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java

Modified: xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java
URL: http://svn.apache.org/viewcvs/xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java?rev=396161&r1=396160&r2=396161&view=diff
==============================================================================
--- xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java (original)
+++ xerces/java/trunk/src/org/apache/xerces/impl/dv/xs/XSSimpleTypeDecl.java Sat Apr 22 13:41:11 2006
@@ -377,7 +377,7 @@
 		fFacetsDefined = fBase.fFacetsDefined;
 		
 		//we also set fundamental facets information in case applyFacets is not called.
-		caclFundamentalFacets();
+		calcFundamentalFacets();
 		fIsImmutable = isImmutable;
 		
 		// Inherit from the base type
@@ -401,7 +401,7 @@
 		fWhiteSpace = WS_COLLAPSE;
 		
 		//setting fundamental facets
-		caclFundamentalFacets();
+		calcFundamentalFacets();
 		fIsImmutable = isImmutable;
 		
 		// Values of this type are lists
@@ -428,7 +428,7 @@
 		fWhiteSpace = WS_COLLAPSE;
 		
 		//setting fundamental facets
-		caclFundamentalFacets();
+		calcFundamentalFacets();
 		// none of the schema-defined types are unions, so just set
 		// fIsImmutable to false.
 		fIsImmutable = false;
@@ -483,7 +483,7 @@
 		fFacetsDefined = fBase.fFacetsDefined;
 		
 		//we also set fundamental facets information in case applyFacets is not called.
-		caclFundamentalFacets();
+		calcFundamentalFacets();
         
         // Inherit from the base type
         fBuiltInKind = base.fBuiltInKind;
@@ -510,7 +510,7 @@
 		fWhiteSpace = WS_COLLAPSE;
 		
 		//setting fundamental facets
-		caclFundamentalFacets();
+		calcFundamentalFacets();
         
         // Values of this type are lists
         fBuiltInKind = XSConstants.LIST_DT;
@@ -540,7 +540,7 @@
 		fWhiteSpace = WS_COLLAPSE;
 		
 		//setting fundamental facets
-		caclFundamentalFacets();
+		calcFundamentalFacets();
         
         // No value can be of this type, so it's unavailable.
         fBuiltInKind = XSConstants.UNAVAILABLE_DT;
@@ -1477,7 +1477,7 @@
 		fFixedFacet |= fBase.fFixedFacet;
 		
 		//step 6: setting fundamental facets
-		caclFundamentalFacets();
+		calcFundamentalFacets();
 		
 	} //applyFacets()
 	
@@ -2276,7 +2276,7 @@
 		return (fAnnotations != null) ? fAnnotations : XSObjectListImpl.EMPTY_LIST;
 	}
 	
-	private void caclFundamentalFacets() {
+	private void calcFundamentalFacets() {
 		setOrdered();
 		setNumeric();
 		setBounded();



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@xerces.apache.org
For additional commands, e-mail: commits-help@xerces.apache.org