Skip to content

Commit

Permalink
fix dangling ref
Browse files Browse the repository at this point in the history
rebuild recheck
  • Loading branch information
JohnMount committed Dec 8, 2019
1 parent b8d6e20 commit 491b588
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 7 deletions.
8 changes: 4 additions & 4 deletions R/ft.R
Expand Up @@ -193,7 +193,7 @@ BinomialOutcomeTreatment <- function(...,
return(res)
}
get_transform <- function() {
td <- get('transform', envir = settings$state, inherits = FALSE)
res <- get('transform', envir = settings$state, inherits = FALSE)
return(res)
}
obj$fit = fit
Expand Down Expand Up @@ -377,7 +377,7 @@ NumericOutcomeTreatment <- function(...,
return(res)
}
get_transform <- function() {
td <- get('transform', envir = settings$state, inherits = FALSE)
res <- get('transform', envir = settings$state, inherits = FALSE)
return(res)
}
obj$fit = fit
Expand Down Expand Up @@ -535,7 +535,7 @@ MultinomialOutcomeTreatment <- function(...,
return(res)
}
get_transform <- function() {
td <- get('transform', envir = settings$state, inherits = FALSE)
res <- get('transform', envir = settings$state, inherits = FALSE)
return(res)
}
obj$fit = fit
Expand Down Expand Up @@ -674,7 +674,7 @@ UnsupervisedTreatment <- function(...,
return(res)
}
get_transform <- function() {
td <- get('transform', envir = settings$state, inherits = FALSE)
res <- get('transform', envir = settings$state, inherits = FALSE)
return(res)
}
obj$fit = fit
Expand Down
13 changes: 12 additions & 1 deletion cran-comments.md
Expand Up @@ -5,7 +5,6 @@
### OSX

R CMD check --as-cran vtreat_1.4.8.tar.gz
* using R version 3.6.0 (2019-04-26)
* using platform: x86_64-apple-darwin15.6.0 (64-bit)
* using session charset: UTF-8
* using option ‘--as-cran’
Expand All @@ -19,6 +18,18 @@
### Windows

rhub::check_for_cran()
978#> * using R Under development (unstable) (2019-11-08 r77393)
979#> * using platform: x86_64-w64-mingw32 (64-bit)
980#> * using session charset: ISO8859-1
981#> * using option '--as-cran'
982#> * checking for file 'vtreat/DESCRIPTION' ... OK
983#> * checking extension type ... Package
984#> * this is package 'vtreat' version '1.4.8'
985#> * checking CRAN incoming feasibility ... Note_to_CRAN_maintainers
986#> Maintainer: 'John Mount '
1028#> * checking sizes of PDF files under 'inst/doc' ... NOTE
1029#> Unable to find GhostScript executable to run checks on size reduction
1044#> Status: 1 NOTE
GhostScript NOTE is a property of the test environment, not of the package.

## Downstream dependencies
Expand Down
4 changes: 2 additions & 2 deletions extras/check_reverse_dependencies.md
Expand Up @@ -14,7 +14,7 @@ packageVersion(package)
date()
```

## [1] "Sat Dec 7 18:54:59 2019"
## [1] "Sun Dec 8 10:30:26 2019"

``` r
parallelCluster <- NULL
Expand All @@ -33,7 +33,7 @@ setwd(td)
print(td)
```

## [1] "/var/folders/7q/h_jp2vj131g5799gfnpzhdp80000gn/T//Rtmpyjdpzy"
## [1] "/var/folders/7q/h_jp2vj131g5799gfnpzhdp80000gn/T//RtmpFPPBpU"

``` r
options(repos = c(CRAN="https://cloud.r-project.org"))
Expand Down

0 comments on commit 491b588

Please sign in to comment.