Skip to content

Commit c33bc63

Browse files
Jami CogswellJami Cogswell
authored andcommitted
Java: remove extraneous parentheses
1 parent cfeedb5 commit c33bc63

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

java/ql/src/Metrics/Summaries/GeneratedVsManualCoverage.ql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ where
6767
generatedCoverage = generated.(float) / all and
6868
manualCoverage = manual.(float) / all and
6969
// Proportion of manual models covered by generated ones
70-
manualCoveredByGenerated = (both.(float) / (both + manualOnly)) and
70+
manualCoveredByGenerated = both.(float) / (both + manualOnly) and
7171
// Proportion of generated models covered by manual ones
72-
generatedCoveredByManual = (both.(float) / (both + generatedOnly)) and
72+
generatedCoveredByManual = both.(float) / (both + generatedOnly) and
7373
// Proportion of data points that match
7474
match = (both.(float) + non) / all
7575
select package, generatedOnly, both, manualOnly, non, all, coverage, generatedCoverage,

0 commit comments

Comments
 (0)