Skip to content

Commit 1d60b49

Browse files
author
Kapil Borle
committed
Remove duplicate methods in helper
1 parent 923c701 commit 1d60b49

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

Engine/Helper.cs

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -165,30 +165,6 @@ public void Initialize()
165165
}
166166
}
167167

168-
public Dictionary<string, Dictionary<string, object>> GetRuleArguments()
169-
{
170-
return ruleArguments;
171-
}
172-
173-
public Dictionary<string, object> GetRuleArguments(string ruleName)
174-
{
175-
if (ruleArguments.ContainsKey(ruleName))
176-
{
177-
return ruleArguments[ruleName];
178-
}
179-
return null;
180-
}
181-
182-
public void SetRuleArguments(Dictionary<string, Dictionary<string, object>> ruleArgs)
183-
{
184-
if (ruleArgs.Comparer != StringComparer.OrdinalIgnoreCase)
185-
{
186-
throw new ArgumentException(
187-
"Input dictionary should have OrdinalIgnoreCase comparer.",
188-
"ruleArgs");
189-
}
190-
ruleArguments = ruleArgs;
191-
}
192168
/// <summary>
193169
/// Returns all the rule arguments
194170
/// </summary>

0 commit comments

Comments
 (0)