mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 20:12:21 +02:00
ToCleanAttributeString now removes explicit System namespace
This commit is contained in:
parent
a84b06aff0
commit
9e9b170548
1 changed files with 2 additions and 1 deletions
|
@ -1273,7 +1273,8 @@ String BfTypeReference::ToCleanAttributeString()
|
||||||
if (typeRefName.EndsWith("Attribute"))
|
if (typeRefName.EndsWith("Attribute"))
|
||||||
typeRefName.RemoveFromEnd(9);
|
typeRefName.RemoveFromEnd(9);
|
||||||
}
|
}
|
||||||
|
if (typeRefName.StartsWith("System."))
|
||||||
|
typeRefName.Remove(0, 7);
|
||||||
return typeRefName;
|
return typeRefName;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue