mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-13 04:52:23 +00:00
Kernel: Change get_sharing_devices_count() in GenericInterruptHandler
The new method' name is sharing_devices_count(). The Serenity Coding Style tends to not accept the word "get" in methods' names if possible.
This commit is contained in:
parent
a7d7c0e60c
commit
fe664965c2
Notes:
sideshowbarker
2024-07-19 09:05:36 +09:00
Author: https://github.com/supercomputer7
Commit: fe664965c2
Pull-request: https://github.com/SerenityOS/serenity/pull/1274
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/shannonbooth
7 changed files with 8 additions and 8 deletions
|
@ -45,7 +45,7 @@ public:
|
|||
|
||||
virtual bool eoi() override;
|
||||
|
||||
virtual size_t get_sharing_devices_count() const override { return m_handlers.size(); }
|
||||
virtual size_t sharing_devices_count() const override { return m_handlers.size(); }
|
||||
virtual bool is_shared_handler() const override { return true; }
|
||||
virtual bool is_sharing_with_others() const override { return false; }
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue