Fix static initializer

This commit is contained in:
Sam Harwell 2013-02-16 10:58:47 -06:00
parent 393cdb5c31
commit e4139444bd
1 changed files with 1 additions and 6 deletions

View File

@ -40,12 +40,7 @@ namespace Antlr4.Runtime.Atn
{
public abstract class ATNSimulator
{
public static readonly int SerializedVersion;
static ATNSimulator()
{
SerializedVersion = 5;
}
public static readonly int SerializedVersion = 5;
public const char RuleVariantDelimiter = '$';