/**
  * Ensure that a given property is not set as an xml-any-attribute.
  *
  * @param oldProperty
  * @param tInfo
  */
 private void unsetXmlAnyAttribute(Property oldProperty, TypeInfo tInfo) {
   oldProperty.setIsAnyAttribute(false);
   if (tInfo.isSetAnyAttributePropertyName()
       && tInfo.getAnyAttributePropertyName().equals(oldProperty.getPropertyName())) {
     tInfo.setAnyAttributePropertyName(null);
   }
 }