minor: In HGAssetMapper, don't complain on seeing an XmlDeclaration as we know that we not using those in transformation.
Relates to http://opensimulator.org/mantis/view.php?id=7447inv-download
parent
a03d893f2c
commit
5fa651c529
|
@ -318,6 +318,11 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
|
|||
writer.WriteString(reader.Value);
|
||||
break;
|
||||
|
||||
case XmlNodeType.XmlDeclaration:
|
||||
// For various reasons, not all serializations have xml declarations (or consistent ones)
|
||||
// and as it's embedded inside a byte stream we don't need it anyway, so ignore.
|
||||
break;
|
||||
|
||||
default:
|
||||
m_log.WarnFormat(
|
||||
"[HG ASSET MAPPER]: Unrecognized node {0} in asset XML transform in {1}",
|
||||
|
|
Loading…
Reference in New Issue