Skip to content

Commit 78e5a1a

Browse files
author
Max Schaefer
committed
Autoformat.
1 parent 7bc0304 commit 78e5a1a

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

java/ql/automodel/src/AutomodelJavaUtil.qll

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ predicate isUnexploitableType(Type tp) {
117117
* static, or private.
118118
*/
119119
predicate isOverridable(Method m) {
120-
not m.getDeclaringType().isFinal() and not m.isFinal() and
121-
not m.isStatic() and not m.isPrivate()
122-
}
120+
not m.getDeclaringType().isFinal() and
121+
not m.isFinal() and
122+
not m.isStatic() and
123+
not m.isPrivate()
124+
}

0 commit comments

Comments
 (0)