Skip to content

Commit 0a2d0f7

Browse files
authored
Merge pull request #10440 from github/ginsbach/JavaUpperCaseVariables
Java: remove upper-case variable name
2 parents 8b29235 + c2bdb69 commit 0a2d0f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

java/ql/src/Architecture/Refactoring Opportunities/HubClasses.ql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ where
1919
eff = t.getMetrics().getEfferentSourceCoupling() and
2020
aff > 15 and
2121
eff > 15
22-
select t as Class,
22+
select t as class_,
2323
"Hub class: this class depends on " + eff.toString() + " classes and is used by " + aff.toString()
2424
+ " classes."

0 commit comments

Comments
 (0)