summaryrefslogtreecommitdiff
path: root/modules/commands/os_akill.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
committerSadie Powell <sadie@witchery.services>2023-12-17 13:59:49 +0000
commit6538641e8703084460df70d04196ac271eff1266 (patch)
tree2bf8ab8fdd0fb4839d86607826bc09c3366e3870 /modules/commands/os_akill.cpp
parenteb0e5c89b2a1e59091001ffd0e54582c2ff04212 (diff)
Remove some unnecessary spaces that break editor indentation.
Diffstat (limited to 'modules/commands/os_akill.cpp')
-rw-r--r--modules/commands/os_akill.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/commands/os_akill.cpp b/modules/commands/os_akill.cpp
index 31f96b507..b6703ff22 100644
--- a/modules/commands/os_akill.cpp
+++ b/modules/commands/os_akill.cpp
@@ -18,7 +18,7 @@ class AkillDelCallback : public NumberList
CommandSource &source;
unsigned deleted = 0;
Command *cmd;
- public:
+public:
AkillDelCallback(CommandSource &_source, const Anope::string &numlist, Command *c) : NumberList(numlist, true), source(_source), cmd(c)
{
}
@@ -57,7 +57,7 @@ class AkillDelCallback : public NumberList
class CommandOSAKill : public Command
{
- private:
+private:
void DoAdd(CommandSource &source, const std::vector<Anope::string> &params)
{
Anope::string expiry, mask;
@@ -266,7 +266,7 @@ class CommandOSAKill : public Command
{
CommandSource &source;
ListFormatter &list;
- public:
+ public:
ListCallback(CommandSource &_source, ListFormatter &_list, const Anope::string &numstr) : NumberList(numstr, false), source(_source), list(_list)
{
}
@@ -379,7 +379,7 @@ class CommandOSAKill : public Command
if (Anope::ReadOnly)
source.Reply(READ_ONLY_MODE);
}
- public:
+public:
CommandOSAKill(Module *creator) : Command(creator, "operserv/akill", 1, 2)
{
this->SetDesc(_("Manipulate the AKILL list"));
@@ -472,7 +472,7 @@ class OSAKill : public Module
{
CommandOSAKill commandosakill;
- public:
+public:
OSAKill(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
commandosakill(this)
{