Skip to content

Commit 08b5cf1

Browse files
Jami CogswellJami Cogswell
authored andcommitted
Java/C#: fix formatting issue
1 parent 84b69de commit 08b5cf1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

csharp/ql/src/Telemetry/SupportedExternalApis.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ private import semmle.code.csharp.dataflow.internal.FlowSummaryImpl as FlowSumma
1212
private import ExternalApi
1313

1414
private predicate relevant(ExternalApi api) {
15-
api.isSupported() or
16-
api instanceof FlowSummaryImpl::Public::NeutralCallable
15+
api.isSupported() or
16+
api instanceof FlowSummaryImpl::Public::NeutralCallable
1717
}
1818

1919
from string info, int usages

java/ql/src/Telemetry/SupportedExternalApis.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import semmle.code.java.dataflow.internal.FlowSummaryImpl as FlowSummaryImpl
1111
import ExternalApi
1212

1313
private predicate relevant(ExternalApi api) {
14-
api.isSupported() or
15-
api = any(FlowSummaryImpl::Public::NeutralCallable nsc).asCallable()
14+
api.isSupported() or
15+
api = any(FlowSummaryImpl::Public::NeutralCallable nsc).asCallable()
1616
}
1717

1818
from string apiName, int usages

0 commit comments

Comments
 (0)