1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 22:27:44 +00:00

AK+LibJS: Remove null state from DeprecatedFlyString :^)

This commit is contained in:
Dan Klishch 2024-01-24 15:15:48 -05:00 committed by Andrew Kaster
parent 026c1caba0
commit 8ac0e3f0e5
7 changed files with 25 additions and 28 deletions

View file

@ -33,7 +33,6 @@ public:
StringOrSymbol(DeprecatedFlyString const& string)
: m_string(string)
{
VERIFY(!string.is_null());
}
~StringOrSymbol()