Skip to content

Commit a124d83

Browse files
committed
Autoformat
1 parent b501033 commit a124d83

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

java/ql/consistency-queries/calls.ql

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ import java
33
from MethodAccess ma
44
// Generally Kotlin calls will always use an explicit qualifier, except for calls
55
// to the synthetic instance initializer <obinit>, which use an implicit `this`.
6-
where not exists(ma.getQualifier()) and ma.getFile().isKotlinSourceFile() and not ma.getCallee() instanceof InstanceInitializer
6+
where
7+
not exists(ma.getQualifier()) and
8+
ma.getFile().isKotlinSourceFile() and
9+
not ma.getCallee() instanceof InstanceInitializer
710
select ma

0 commit comments

Comments
 (0)