Bug 262188 - nsSchemaLoader::ProcessFacet checks for sMaxInclusive_atom twice, it should check for sMinInclusive_atopm the 2nd time. r=timeless/sr=peterv

This commit is contained in:
doronr%us.ibm.com 2004-09-30 15:09:10 +00:00
parent c39f21c3b0
commit 1e7fadf591

View File

@ -2972,7 +2972,7 @@ nsSchemaLoader::ProcessFacet(nsIWebServiceErrorHandler* aErrorHandler,
else if (aTagName == nsSchemaAtoms::sMaxExclusive_atom) {
facetType = nsISchemaFacet::FACET_TYPE_MAXEXCLUSIVE;
}
else if (aTagName == nsSchemaAtoms::sMaxInclusive_atom) {
else if (aTagName == nsSchemaAtoms::sMinExclusive_atom) {
facetType = nsISchemaFacet::FACET_TYPE_MINEXCLUSIVE;
}
else if (aTagName == nsSchemaAtoms::sTotalDigits_atom) {