delete unused predicate that couldn't be imported from outside the folder

This commit is contained in:
erik-krogh
2022-09-20 12:40:39 +02:00
parent 8eefa4c1b0
commit 70eced62b6

View File

@@ -1,9 +1,5 @@
import java
predicate initializedToField(LocalVariableDecl d, Field f) {
exists(LocalVariableDeclExpr e | e.getVariable() = d and f.getAnAccess() = e.getInit())
}
predicate getterFor(Method m, Field f) {
m.getName().matches("get%") and
m.getDeclaringType() = f.getDeclaringType() and