Skip to content
Snippets Groups Projects
Commit ea5c5497 authored by Mikaël Mayer's avatar Mikaël Mayer
Browse files

Corrected a syntax bug in Rules.scala

parent 46298812
No related branches found
No related tags found
No related merge requests found
...@@ -85,7 +85,7 @@ abstract class RuleInstantiation(val description: String, ...@@ -85,7 +85,7 @@ abstract class RuleInstantiation(val description: String,
object RuleInstantiation { object RuleInstantiation {
def apply(description: String)(f: => RuleApplication)(implicit problem: Problem, rule: Rule): RuleInstantiation = { def apply(description: String)(f: => RuleApplication)(implicit problem: Problem, rule: Rule): RuleInstantiation = {
new RuleInstantiation(description) { new RuleInstantiation(description) {
def apply(hctx): RuleApplication = f def apply(hctx: SearchContext): RuleApplication = f
} }
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment