From dfbcd6f0293c73538efb9c56f0a5965cf19da465 Mon Sep 17 00:00:00 2001 From: Histalek <16392835+Histalek@users.noreply.github.com> Date: Tue, 17 Oct 2023 01:31:46 +0200 Subject: [PATCH] XXX: Ignore unknown params for now --- source/FileParser.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/FileParser.cs b/source/FileParser.cs index 8e57993..5ba4207 100644 --- a/source/FileParser.cs +++ b/source/FileParser.cs @@ -91,9 +91,9 @@ public void Process() if (!string.IsNullOrEmpty(foundLineParamString)) // if there is a not registered param { - NeoDoc.WriteErrors("Unregistered param detected", new List() { - "'" + foundLineParamString + "' ('" + line + "')" - }, relPath, CurrentLineCount + 1, (int)NeoDoc.ERROR_CODES.UNREGISTERED_PARAM); + //NeoDoc.WriteErrors("Unregistered param detected", new List() { + // "'" + foundLineParamString + "' ('" + line + "')" + //}, relPath, CurrentLineCount + 1, (int)NeoDoc.ERROR_CODES.UNREGISTERED_PARAM); } else {