Skip to content

Commit

Permalink
addressing review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
jharajeev55 committed Dec 4, 2024
1 parent 882f48e commit 4cfc1d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Json_parser/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ static void parse_commands_josn(string base_lib_dir, string json_file_path)

var triggerModelLoadCommands = cmdList.Where(cmd => cmd.name.Contains("trigger.model.load()")).ToList(); // get trigger.model.load() commands

var triggerBlockConstenets = cmdList.Where(cmd => cmd.name.Contains("trigger.BLOCK_")).ToList();
cmdList = cmdList.Except(triggerBlockConstenets).ToList();
var triggerBlockConstants = cmdList.Where(cmd => cmd.name.Contains("trigger.BLOCK_")).ToList();
cmdList = cmdList.Except(triggerBlockConstants).ToList();


cmdList = cmdList.Except(directFunctioncommands).ToList(); // remove all directFunctioncommands commands and handle it speratley
Expand Down

0 comments on commit 4cfc1d6

Please sign in to comment.