Skip to content

Commit 10e5f96

Browse files
committed
Remove unneeded nonSuspicious values
1 parent 71ea24f commit 10e5f96

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

java/ql/lib/semmle/code/java/security/SensitiveActions.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ private string suspicious() {
2424
private string nonSuspicious() {
2525
result = "%hashed%" or
2626
result = "%encrypted%" or
27-
result = "%crypt%" or
28-
result = "%create table%" or
29-
result = "%drop table%"
27+
result = "%crypt%"
3028
}
3129

3230
/**

0 commit comments

Comments
 (0)