Skip to content

Commit

Permalink
unscramble lifecycle information
Browse files Browse the repository at this point in the history
  • Loading branch information
d-morrison committed Jul 16, 2024
1 parent ca99c04 commit 854e17c
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 1 addition & 7 deletions R/get_additional_data.R
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
#'
#' @keywords internal
#' @export
getAdditionalData <- function(
fileURL,
savePath = NULL) {
getAdditionalData <- function(fileURL, savePath = NULL) {
lifecycle::deprecate_warn("1.0.0", "getAdditionalData()", "get_additional_data()")
get_additional_data(fileURL, savePath = NULL)
}
Expand All @@ -28,7 +26,6 @@ getAdditionalData <- function(
#' Large datasets may timeout. If so, you can increase the download time by updating the maximum timeout time in the code below. (Ex: increase from 300 to 1000)
#' ```options(timeout = max(300, getOption("timeout")))```
#'
#' `r lifecycle::badge("deprecated")`
#' @param fileURL URL of the file to be downloaded.
#' @param savePath Folder directory and filename to save the downloaded and unzipped (if needed) file. File is saved only
#' if this argument is not `NULL`. Optional. Default = `NULL`.
Expand All @@ -55,9 +52,6 @@ getAdditionalData <- function(
get_additional_data <- function(
fileURL,
savePath = NULL) {
lifecycle::deprecate_warn("1.0.0", "getAdditionalData()", "get_additional_data()")

get_additional_data(fileURL, savePath = NULL)

fileName <- basename(fileURL)
tmpFileName <- file.path(tempdir(), fileName)
Expand Down
2 changes: 0 additions & 2 deletions man/get_additional_data.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 854e17c

Please sign in to comment.