From: Miloš Klouček Date: Sat, 16 Aug 2008 17:24:13 +0000 (+0000) Subject: removed one compile warning (unused variable e) X-Git-Url: https://git.octo.it/?p=supertux.git;a=commitdiff_plain;h=349d0bce96ff859c851a9ded99dfa0abf9ade001 removed one compile warning (unused variable e) SVN-Revision: 5727 --- diff --git a/tools/tilemanager/Lexer.cs b/tools/tilemanager/Lexer.cs index bbbd397aa..1e8a72399 100644 --- a/tools/tilemanager/Lexer.cs +++ b/tools/tilemanager/Lexer.cs @@ -137,7 +137,7 @@ public class Lexer { return TokenType.SYMBOL; } } - } catch(EOFException e) { + } catch(EOFException) { return TokenType.EOF; } }