From a569129a5650d068fe4c1011fe7dd5860b62b31f Mon Sep 17 00:00:00 2001 From: John Halley Gotway Date: Mon, 14 Oct 2024 16:55:22 +0000 Subject: [PATCH] Per #2880, remove unneeded comment --- src/tools/core/stat_analysis/parse_stat_line.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tools/core/stat_analysis/parse_stat_line.cc b/src/tools/core/stat_analysis/parse_stat_line.cc index 3e3c5ae1f3..80a4dd7102 100644 --- a/src/tools/core/stat_analysis/parse_stat_line.cc +++ b/src/tools/core/stat_analysis/parse_stat_line.cc @@ -61,7 +61,6 @@ void parse_fho_ctable(STATLine &l, TTContingencyTable &ct) { double h_rate = atof(l.get_item("H_RATE")); double o_rate = atof(l.get_item("O_RATE")); - // MET #2887: JHG multiple by the sum of the weights here instead? double fy = n_pairs * f_rate; double fy_oy = n_pairs * h_rate; double oy = n_pairs * o_rate;