Skip to content

Commit 1eadf31

Browse files
committed
fix the usage of internal storage env
1 parent 4cf5dae commit 1eadf31

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

R/aaa.R

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22
# Using convention in https://github.com/tidyverse/design/issues/126
33
the <- rlang::new_environment(
44
list(
5-
preview_infos = list(),
6-
latest_stable = list(date = NULL, infos = NULL),
7-
latest_prerelease = list(date = NULL, infos = NULL)
5+
preview_infos = list()
6+
7+
# other possibles values in this env but should not exist because of env_cache usage
8+
# latest_stable = list(date = NULL, infos = NULL),
9+
# latest_prerelease = list(date = NULL, infos = NULL)
810
),
911
parent = emptyenv()
1012
)

0 commit comments

Comments
 (0)