Autoformat.

This commit is contained in:
Max Schaefer
2024-01-22 10:45:33 +00:00
parent 7bc03040ec
commit 78e5a1a546

View File

@@ -117,6 +117,8 @@ predicate isUnexploitableType(Type tp) {
* static, or private.
*/
predicate isOverridable(Method m) {
not m.getDeclaringType().isFinal() and not m.isFinal() and
not m.isStatic() and not m.isPrivate()
}
not m.getDeclaringType().isFinal() and
not m.isFinal() and
not m.isStatic() and
not m.isPrivate()
}