зеркало из https://github.com/stride3d/SharpYaml.git
TypeToTag shouldn't contain aliases.
This commit is contained in:
Родитель
e90c119a1f
Коммит
a1fdd6504f
|
@ -176,7 +176,10 @@ namespace SharpYaml.Serialization
|
||||||
lock (lockCache)
|
lock (lockCache)
|
||||||
{
|
{
|
||||||
tagToType[tag] = new MappedType(type, alias);
|
tagToType[tag] = new MappedType(type, alias);
|
||||||
typeToTag[type] = tag;
|
|
||||||
|
// Only register types that are not aliases
|
||||||
|
if (!alias)
|
||||||
|
typeToTag[type] = tag;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче