- remove now unneeded files
[reactos.git] / irc / TechBot / TechBot.Library / Commands / SvnCommand.cs
diff --git a/irc/TechBot/TechBot.Library/Commands/SvnCommand.cs b/irc/TechBot/TechBot.Library/Commands/SvnCommand.cs
deleted file mode 100644 (file)
index 5146c28..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-using System;
-
-namespace TechBot.Library
-{
-    [Command("svn", Help = "!svn")]
-       public class SvnCommand : Command
-       {
-               private string m_SvnRoot;
-
-        public SvnCommand()
-               {
-                       m_SvnRoot = Settings.Default.SVNRoot;
-               }
-               
-               public override void ExecuteCommand()
-               {
-            Say("svn co {0}", m_SvnRoot);
-               }
-       }
-}