removed one compile warning (unused variable e)
[supertux.git] / tools / tilemanager / Lexer.cs
index bbbd397..1e8a723 100644 (file)
@@ -137,7 +137,7 @@ public class Lexer {
                         return TokenType.SYMBOL;
                     }
             }
-        } catch(EOFException e) {
+        } catch(EOFException) {
             return TokenType.EOF;
         }
     }