Skip to content

Commit 5c2ad89

Browse files
Merge pull request #8 from mateusz-bajorek/filters
Fixes #6 - use correct relation symbols
2 parents 4305055 + a7c032d commit 5c2ad89

File tree

1 file changed

+3
-3
lines changed
  • src/main/java/com/currencyfair/onesignal/model/notification

1 file changed

+3
-3
lines changed

src/main/java/com/currencyfair/onesignal/model/notification/Relation.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
public enum Relation {
2525

2626
//CHECKSTYLE:Off Javadoc
27-
LESS_THAN(">"),
28-
GREATER_THAN("<"),
29-
EQUALS("+"),
27+
LESS_THAN("<"),
28+
GREATER_THAN(">"),
29+
EQUALS("="),
3030
NOT_EQUALS("!="),
3131
EXISTS("exists"),
3232
NOT_EXISTS("not_exists");

0 commit comments

Comments
 (0)