about summary refs log tree commit diff
path: root/IrcStates/Server.cs
diff options
context:
space:
mode:
Diffstat (limited to 'IrcStates/Server.cs')
-rw-r--r--IrcStates/Server.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/IrcStates/Server.cs b/IrcStates/Server.cs
index 1d4f90f..582237d 100644
--- a/IrcStates/Server.cs
+++ b/IrcStates/Server.cs
@@ -1,4 +1,4 @@
-using System;
+using System;
 using System.Collections.Generic;
 using System.Globalization;
 using System.Linq;
@@ -75,7 +75,7 @@ namespace IrcStates
             return lines.Select(l => (l, ParseTokens(l))).ToList();
         }
 
-        public Emit ParseTokens(Line line)
+        public Emit Parse(Line line)
         {
             if (line == null || !Handlers.ContainsKey(line.Command)) return null;
             var ret = new Emit();