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 064c9a6 commit ea11f74Copy full SHA for ea11f74
1 file changed
csharp/ql/src/Bad Practices/Naming Conventions/ConfusingOverridesNames.ql
@@ -72,5 +72,5 @@ where
72
) and
73
m1.fromSource()
74
select m1,
75
- "confusing to have methods " + m1.getName() + " in " + m1.getDeclaringType().getName() + " and " +
76
- m2.getName() + " in " + m2.getDeclaringType().getName() + "."
+ "It is confusing to have methods " + m1.getName() + " in " + m1.getDeclaringType().getName() +
+ " and " + m2.getName() + " in " + m2.getDeclaringType().getName() + "."
0 commit comments