Re: [R-pkg-devel] Deprecating apparent S3 method, changing name

2024-09-29 Thread Murray Efford via R-package-devel
Check results vary. With win-builder both R-release (R 4.4.1) and R-devel I get * checking S3 generic/method consistency ... NOTE Apparent methods for exported generics not registered: esa.plot See section 'Registering S3 methods' in the 'Writing R Extensions' manual. But there's no such Note o

Re: [R-pkg-devel] Deprecating apparent S3 method, changing name

2024-09-29 Thread Jan van der Laan
Hmm, the following doesn't seem to trigger warnings or notes in `R CMD check --as-cran` (R 4.4.1; linux) esa <- function(x) { UseMethod("esa") } esa.plot <- function(y) { .Deprecated("esaPlot") esaPlot(y) } esaPlot <- function(y) { message("esaPl