From 8d800e9f70d150e4670407dd07e97c2508d1132b Mon Sep 17 00:00:00 2001 From: Mike Lischke Date: Mon, 30 Dec 2024 14:52:44 +0100 Subject: [PATCH] Forgot to remove test code. --- src/codegen/model/OutputFile.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/codegen/model/OutputFile.ts b/src/codegen/model/OutputFile.ts index 7c307fa..391fd4f 100644 --- a/src/codegen/model/OutputFile.ts +++ b/src/codegen/model/OutputFile.ts @@ -4,7 +4,6 @@ * can be found in the LICENSE.txt file in the project root. */ -import { RuntimeMetaData } from "antlr4ng"; import { Grammar } from "../../tool/Grammar.js"; import { ActionAST } from "../../tool/ast/ActionAST.js"; import { OutputModelFactory } from "../OutputModelFactory.js"; @@ -12,10 +11,6 @@ import { Action } from "./Action.js"; import { OutputModelObject } from "./OutputModelObject.js"; export abstract class OutputFile extends OutputModelObject { - private readonly checkVersion = () => { - RuntimeMetaData.checkVersion("4.13.2", RuntimeMetaData.VERSION); - }; - public readonly fileName: string; public readonly grammarFileName: string; public readonly TokenLabelType?: string;