Author: mukulg Date: Sat Oct 29 10:09:48 2011 New Revision: 1194862 URL: http://svn.apache.org/viewvc?rev=1194862&view=rev Log: doing minor variable spelling correction
Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XMLAssertPsychopathXPath2Impl.java Modified: xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XMLAssertPsychopathXPath2Impl.java URL: http://svn.apache.org/viewvc/xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XMLAssertPsychopathXPath2Impl.java?rev=1194862&r1=1194861&r2=1194862&view=diff ============================================================================== --- xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XMLAssertPsychopathXPath2Impl.java (original) +++ xerces/java/branches/xml-schema-1.1-dev/src/org/apache/xerces/impl/xs/XMLAssertPsychopathXPath2Impl.java Sat Oct 29 10:09:48 2011 @@ -108,7 +108,7 @@ public class XMLAssertPsychopathXPath2Im private XSAssert[] fFailedAssertions = null; // state to save the <assert> root type information, of the current assertion evaluation - private XSTypeDefinition fAsertRootTypeDef = null; + private XSTypeDefinition fAssertRootTypeDef = null; /* @@ -294,7 +294,7 @@ public class XMLAssertPsychopathXPath2Im */ private ElementPSVImpl savePsviInfoWithUntypingOfAssertRoot(ElementPSVI elemPsvi, boolean isSetXsAny) { ElementPSVImpl assertRootPsvi = new ElementPSVImpl(true, elemPsvi); - fAsertRootTypeDef = assertRootPsvi.getTypeDefinition(); + fAssertRootTypeDef = assertRootPsvi.getTypeDefinition(); if (isSetXsAny) { assertRootPsvi.fTypeDecl = new SchemaGrammar.XSAnyType(); ((PSVIElementNSImpl)fCurrentAssertDomNode).setPSVI(assertRootPsvi); @@ -308,8 +308,8 @@ public class XMLAssertPsychopathXPath2Im */ private void restorePsviInfoForXPathContext(ElementPSVI elemPsvi) { ElementPSVImpl assertRootPsvi = (ElementPSVImpl)elemPsvi; - if (fAsertRootTypeDef != null) { - assertRootPsvi.fTypeDecl = fAsertRootTypeDef; + if (fAssertRootTypeDef != null) { + assertRootPsvi.fTypeDecl = fAssertRootTypeDef; ((PSVIElementNSImpl)fCurrentAssertDomNode).setPSVI(assertRootPsvi); } } // restorePsviInfoForXPathContext --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@xerces.apache.org For additional commands, e-mail: commits-h...@xerces.apache.org