diff options
author | b14ckcat <b14ckcat@protonmail.com> | 2022-04-22 23:19:16 -0400 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2022-04-22 22:20:57 -0700 |
commit | 70a55ccf7350d9f2e29e8d48b73d2a453f927cf3 (patch) | |
tree | 9439a03ef8413e35d5d47f17b9dbd6782ea15243 /Kernel | |
parent | 2c0716e31480a2a91920b80ba3a5880a126cadd4 (diff) | |
download | serenity-70a55ccf7350d9f2e29e8d48b73d2a453f927cf3.zip |
Kernel: Fix typo in Ramdisk
Remove the duplicate/extraneous access specifier.
Diffstat (limited to 'Kernel')
-rw-r--r-- | Kernel/Storage/Ramdisk/Controller.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Storage/Ramdisk/Controller.h b/Kernel/Storage/Ramdisk/Controller.h index 9a88070769..879c18adfc 100644 --- a/Kernel/Storage/Ramdisk/Controller.h +++ b/Kernel/Storage/Ramdisk/Controller.h @@ -19,7 +19,6 @@ class AsyncBlockDeviceRequest; class RamdiskController final : public StorageController { public: -public: static NonnullRefPtr<RamdiskController> initialize(); virtual ~RamdiskController() override; |