Remove unreferenced locals

This commit is contained in:
Sam Harwell 2013-02-25 12:48:33 -06:00
parent d5addbd287
commit 92fc3ac1a1
2 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@
int ret = process.ExitCode;
return ret == 0;
}
catch (Exception e)
catch (Exception)
{
Console.Error.WriteLine("can't exec compilation");
//e.printStackTrace(System.err);
@ -277,7 +277,7 @@
int ret = process.ExitCode;
return ret == 0;
}
catch (Exception e)
catch (Exception)
{
Console.Error.WriteLine("can't exec compilation");
//e.printStackTrace(System.err);

View File

@ -417,7 +417,7 @@ namespace Antlr4.Runtime.Atn
alt = ExecATN(dfa, input, index, state);
}
}
catch (NoViableAltException nvae)
catch (NoViableAltException)
{
throw;
}