-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Everywhere: Rename DeprecatedFlyString
to FlyByteString
#25513
Everywhere: Rename DeprecatedFlyString
to FlyByteString
#25513
Conversation
005f370
to
f5875f7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems reasonable, especially since #22926 removed the main reason for deprecation--the null state--over nine months ago. (I didn't look too closely at mechanical changes though)
@@ -7,7 +7,7 @@ set(AK_SOURCES | |||
ConstrainedStream.cpp | |||
CountingStream.cpp | |||
DOSPackedTime.cpp | |||
DeprecatedFlyString.cpp | |||
FlyByteString.cpp |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be in alphabetic order.
@@ -56,8 +56,8 @@ class FlyString { | |||
[[nodiscard]] static size_t number_of_fly_strings(); | |||
|
|||
// FIXME: Remove these once all code has been ported to FlyString | |||
[[nodiscard]] DeprecatedFlyString to_deprecated_fly_string() const; | |||
static ErrorOr<FlyString> from_deprecated_fly_string(DeprecatedFlyString const&); | |||
[[nodiscard]] FlyByteString to_deprecated_fly_string() const; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{to,from}_fly_byte_string
, maybe?
@@ -32,7 +32,7 @@ class ConstrainedStream; | |||
template<typename T> | |||
class Coroutine; | |||
class CountingStream; | |||
class DeprecatedFlyString; | |||
class FlyByteString; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Again, alphabetic order
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions! |
This pull request has been closed because it has not had recent activity. Feel free to re-open if you wish to still contribute these changes. Thank you for your contributions! |
As discussed in #25492.