Skip to content

Commit 60ada45

Browse files
committed
Remove remaining references to comp_effective_key_vars
1 parent af49aae commit 60ada45

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

R/grouped_epi_archive.R

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ grouped_epi_archive =
386386
# provide an implementation yet. Next best would be
387387
# `group_modify` on its `$DT`, but that has different behavior
388388
# based on whether or not `dtplyr` is loaded. Instead, go
389-
# through a , trying to avoid copies.
389+
# through an ordinary data frame, trying to avoid copies.
390390
if (address(as_of_archive$DT) == address(private$ungrouped$DT)) {
391391
# `as_of` aliased its the full `$DT`; copy before mutating:
392392
as_of_archive$DT <- copy(as_of_archive$DT)
@@ -399,7 +399,6 @@ grouped_epi_archive =
399399
group_modify_fn = function(.data_group, .group_key,
400400
f, ...,
401401
ref_time_value,
402-
comp_effective_key_vars,
403402
new_col) {
404403
# .data_group is coming from as_of_df as a tibble, but we
405404
# want to feed `comp_one_grp` an `epi_archive` backed by a
@@ -410,7 +409,6 @@ grouped_epi_archive =
410409
.data_group_archive$DT = .data_group
411410
comp_one_grp(.data_group_archive, .group_key, f = f, quo = quo,
412411
ref_time_value = ref_time_value,
413-
comp_effective_key_vars = comp_effective_key_vars,
414412
new_col = new_col
415413
)
416414
}

0 commit comments

Comments
 (0)