Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e4e52e7 commit 5b7f69cCopy full SHA for 5b7f69c
1 file changed
ql/ql/src/queries/bugs/NameClashInSummarizedCallable.ql
@@ -110,6 +110,5 @@ predicate hasClashBreakSymmetry(
110
from SummarizedCallableImpl class1, SummarizedCallableImpl class2, string name
111
where hasClashBreakSymmetry(class1, class2, name)
112
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()
+ class1.getName() + " and $@ both bind 'this' to the string \"" + name +
+ "\". They may accidentally apply to each others' call sites.", class2, class2.getName()
0 commit comments