summaryrefslogtreecommitdiff
path: root/AK
diff options
context:
space:
mode:
authorSam Atkins <atkinssj@serenityos.org>2022-12-20 16:45:07 +0000
committerAndreas Kling <kling@serenityos.org>2022-12-22 15:48:53 +0100
commit29733e65f848826f2721d932841e7e86fd0581f0 (patch)
treef6ca1fa917ad9057ba3106f7b149cea3b82fb361 /AK
parentbed5961fc21ea499ede556d6269df29b8a7a9e15 (diff)
downloadserenity-29733e65f848826f2721d932841e7e86fd0581f0.zip
AK+Everywhere: Replace all Bitmap::must_create() uses with ::create()
Well, *someone* has to add some more FIXMEs to keep FIXME Roulette going. :^)
Diffstat (limited to 'AK')
-rw-r--r--AK/Bitmap.h5
1 files changed, 0 insertions, 5 deletions
diff --git a/AK/Bitmap.h b/AK/Bitmap.h
index ff5ac5ef69..78a7735af9 100644
--- a/AK/Bitmap.h
+++ b/AK/Bitmap.h
@@ -35,11 +35,6 @@ public:
return bitmap;
}
- static Bitmap must_create(size_t size, bool default_value)
- {
- return MUST(create(size, default_value));
- }
-
Bitmap() = default;
Bitmap(u8* data, size_t size, bool is_owning = false)