Skip to content

Commit 058bf17

Browse files
author
James Simone
committed
issue-16 forgot to commit crucial change to SOQLUtils
1 parent 6e41692 commit 058bf17

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/classes/SOQLUtils.cls

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ public without sharing class SOQLUtils {
88

99
public static String toSOQLString(Object value) {
1010
if(value == null) return null;
11-
else if(value instanceof DateLiteralConstant) {
12-
DateLiteralConstant dateLiteral = (DateLiteralConstant) value;
11+
else if(value instanceof DateLiterals) {
12+
DateLiterals dateLiteral = (DateLiterals) value;
1313
return dateLiteral.value;
1414
}
1515
else if(value instanceof Boolean) return String.valueOf((Boolean)value);

0 commit comments

Comments
 (0)