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 7bc0304 commit 78e5a1aCopy full SHA for 78e5a1a
java/ql/automodel/src/AutomodelJavaUtil.qll
@@ -117,6 +117,8 @@ predicate isUnexploitableType(Type tp) {
117
* static, or private.
118
*/
119
predicate isOverridable(Method m) {
120
- not m.getDeclaringType().isFinal() and not m.isFinal() and
121
- not m.isStatic() and not m.isPrivate()
122
-}
+ not m.getDeclaringType().isFinal() and
+ not m.isFinal() and
+ not m.isStatic() and
123
+ not m.isPrivate()
124
+}
0 commit comments