Skip to content

Commit

Permalink
XXX: Ignore unknown params for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Histalek committed Oct 16, 2023
1 parent fccb263 commit dfbcd6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions source/FileParser.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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<string>() {
"'" + foundLineParamString + "' ('" + line + "')"
}, relPath, CurrentLineCount + 1, (int)NeoDoc.ERROR_CODES.UNREGISTERED_PARAM);
//NeoDoc.WriteErrors("Unregistered param detected", new List<string>() {
// "'" + foundLineParamString + "' ('" + line + "')"
//}, relPath, CurrentLineCount + 1, (int)NeoDoc.ERROR_CODES.UNREGISTERED_PARAM);
}
else
{
Expand Down

0 comments on commit dfbcd6f

Please sign in to comment.