Skip to content

Commit a7c032d

Browse files
Fixes #6 - use correct relation symbols
/me ashamed
1 parent 4305055 commit a7c032d

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)