Skip to content

Commit 4beb56c

Browse files
committed
remove PredicateEvaluator::evaluate_predicate_with_direction
1 parent 89bd514 commit 4beb56c

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/traits/predicate_evaluator.rs

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,7 @@ pub trait PredicateEvaluator {
33
type Reason;
44
type Direction;
55

6-
fn evaluate_predicate(&self, _predicate: &Self::Predicate) -> bool {
7-
false
8-
}
9-
10-
fn evaluate_predicate_with_direction(
11-
&self,
12-
_predicate: &Self::Predicate,
13-
_direction: &Self::Direction,
14-
) -> bool {
15-
false
16-
}
6+
fn evaluate_predicate(&self, _predicate: &Self::Predicate) -> bool;
177

188
fn get_reason(&self, predicate: &Self::Predicate) -> Self::Reason;
199

0 commit comments

Comments
 (0)