diff --git a/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/security/ApexSOQLInjectionRule.java b/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/security/ApexSOQLInjectionRule.java index d1fe48bd10..2309ed0423 100644 --- a/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/security/ApexSOQLInjectionRule.java +++ b/pmd-apex/src/main/java/net/sourceforge/pmd/lang/apex/rule/security/ApexSOQLInjectionRule.java @@ -39,7 +39,7 @@ import net.sourceforge.pmd.lang.apex.rule.internal.Helper; */ public class ApexSOQLInjectionRule extends AbstractApexRule { private static final Set SAFE_VARIABLE_TYPES = - Collections.unmodifiableSet(Stream.of( + Collections.unmodifiableSet(Stream.of( "double", "long", "decimal", "boolean", "id", "integer", "sobjecttype", "schema.sobjecttype", "sobjectfield", "schema.sobjectfield" ).collect(Collectors.toSet()));