]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_sajoin.cpp
fixed some indentation and spacing in modules
[user/henk/code/inspircd.git] / src / modules / m_sajoin.cpp
index c320287e1462003de4d0261e410febc4d9b65d28..72fdd3e08c2a2852d8f18ba9d4aef02a9eb20a12 100644 (file)
@@ -93,21 +93,21 @@ class ModuleSajoin : public Module
        ModuleSajoin(InspIRCd* Me)
                : Module(Me)
        {
-               
+
                mycommand = new CommandSajoin(ServerInstance);
                ServerInstance->AddCommand(mycommand);
 
        }
-       
+
        virtual ~ModuleSajoin()
        {
        }
-       
+
        virtual Version GetVersion()
        {
                return Version(1, 2, 0, 1, VF_COMMON | VF_VENDOR, API_VERSION);
        }
-       
+
 };
 
 MODULE_INIT(ModuleSajoin)