Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ea11f74

Browse files
committed
update cs/confusing-override-name to match java
1 parent 064c9a6 commit ea11f74

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

csharp/ql/src/Bad Practices/Naming Conventions/ConfusingOverridesNames.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ where
7272
) and
7373
m1.fromSource()
7474
select m1,
75-
"confusing to have methods " + m1.getName() + " in " + m1.getDeclaringType().getName() + " and " +
76-
m2.getName() + " in " + m2.getDeclaringType().getName() + "."
75+
"It is confusing to have methods " + m1.getName() + " in " + m1.getDeclaringType().getName() +
76+
" and " + m2.getName() + " in " + m2.getDeclaringType().getName() + "."

0 commit comments

Comments
 (0)