We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e41692 commit 058bf17Copy full SHA for 058bf17
src/classes/SOQLUtils.cls
@@ -8,8 +8,8 @@ public without sharing class SOQLUtils {
8
9
public static String toSOQLString(Object value) {
10
if(value == null) return null;
11
- else if(value instanceof DateLiteralConstant) {
12
- DateLiteralConstant dateLiteral = (DateLiteralConstant) value;
+ else if(value instanceof DateLiterals) {
+ DateLiterals dateLiteral = (DateLiterals) value;
13
return dateLiteral.value;
14
}
15
else if(value instanceof Boolean) return String.valueOf((Boolean)value);
0 commit comments