Remove unreferenced locals
This commit is contained in:
parent
d5addbd287
commit
92fc3ac1a1
|
@ -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);
|
||||
|
|
|
@ -417,7 +417,7 @@ namespace Antlr4.Runtime.Atn
|
|||
alt = ExecATN(dfa, input, index, state);
|
||||
}
|
||||
}
|
||||
catch (NoViableAltException nvae)
|
||||
catch (NoViableAltException)
|
||||
{
|
||||
throw;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue