Removed unnecessary null terminator

This commit is contained in:
Simon Lübeß
2025-08-08 19:10:40 +02:00
parent 3f83c200f2
commit e57c1c876f
+1 -1
View File
@@ -21,7 +21,7 @@ abstract class Asset : RefCounter
/// This identifier can be used to request the Asset from the content manager.
public StringView Identifier
{
get => _identifier..EnsureNullTerminator();
get => _identifier;
set => _identifier.Set(value);
}