Skip to content

Commit 5b7f69c

Browse files
committed
QL4QL: Fix a warning about repeating alert location
1 parent e4e52e7 commit 5b7f69c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

ql/ql/src/queries/bugs/NameClashInSummarizedCallable.ql

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,5 @@ predicate hasClashBreakSymmetry(
110110
from SummarizedCallableImpl class1, SummarizedCallableImpl class2, string name
111111
where hasClashBreakSymmetry(class1, class2, name)
112112
select class1,
113-
"$@ and $@ both bind 'this' to the string \"" + name +
114-
"\". They may accidentally apply to each others' call sites.", class1, class1.getName(), class2,
115-
class2.getName()
113+
class1.getName() + " and $@ both bind 'this' to the string \"" + name +
114+
"\". They may accidentally apply to each others' call sites.", class2, class2.getName()

0 commit comments

Comments
 (0)