Skip to content

Commit a1a875e

Browse files
committed
Java/C++/C#: Fix autoformat.
1 parent 02068ec commit a1a875e

File tree

4 files changed

+4
-12
lines changed

4 files changed

+4
-12
lines changed

cpp/ql/src/semmle/code/cpp/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,7 @@ private module ImplCommon {
641641

642642
class CallContextSpecificCall extends CallContextCall, TSpecificCall {
643643
override string toString() {
644-
exists(DataFlowCall call | this = TSpecificCall(call) |
645-
result = "CcCall(" + call + ")"
646-
)
644+
exists(DataFlowCall call | this = TSpecificCall(call) | result = "CcCall(" + call + ")")
647645
}
648646

649647
override predicate relevantFor(DataFlowCallable callable) {

cpp/ql/src/semmle/code/cpp/ir/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,7 @@ private module ImplCommon {
641641

642642
class CallContextSpecificCall extends CallContextCall, TSpecificCall {
643643
override string toString() {
644-
exists(DataFlowCall call | this = TSpecificCall(call) |
645-
result = "CcCall(" + call + ")"
646-
)
644+
exists(DataFlowCall call | this = TSpecificCall(call) | result = "CcCall(" + call + ")")
647645
}
648646

649647
override predicate relevantFor(DataFlowCallable callable) {

csharp/ql/src/semmle/code/csharp/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,7 @@ private module ImplCommon {
641641

642642
class CallContextSpecificCall extends CallContextCall, TSpecificCall {
643643
override string toString() {
644-
exists(DataFlowCall call | this = TSpecificCall(call) |
645-
result = "CcCall(" + call + ")"
646-
)
644+
exists(DataFlowCall call | this = TSpecificCall(call) | result = "CcCall(" + call + ")")
647645
}
648646

649647
override predicate relevantFor(DataFlowCallable callable) {

java/ql/src/semmle/code/java/dataflow/internal/DataFlowImplCommon.qll

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -641,9 +641,7 @@ private module ImplCommon {
641641

642642
class CallContextSpecificCall extends CallContextCall, TSpecificCall {
643643
override string toString() {
644-
exists(DataFlowCall call | this = TSpecificCall(call) |
645-
result = "CcCall(" + call + ")"
646-
)
644+
exists(DataFlowCall call | this = TSpecificCall(call) | result = "CcCall(" + call + ")")
647645
}
648646

649647
override predicate relevantFor(DataFlowCallable callable) {

0 commit comments

Comments
 (0)