-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #175 from inbo/remove_schemes_use_n2khabmon
Drop two built-in data sources; deprecate `read_schemes()` and `read_scheme_types()`
- Loading branch information
Showing
30 changed files
with
66 additions
and
4,831 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#' Deprecated functions | ||
#' | ||
#' - [`read_schemes()`] has moved to package `n2khabmon`. | ||
#' Use [`n2khabmon::read_schemes()`] instead. | ||
#' - [`read_scheme_types()`] has moved to package `n2khabmon`. | ||
#' Use [`n2khabmon::read_scheme_types()`] instead. | ||
#' | ||
#' @param ... arguments passed to the new function | ||
#' | ||
#' @md | ||
#' | ||
#' @name n2khab-deprecated | ||
|
||
#' @rdname n2khab-deprecated | ||
#' @export | ||
#' @keywords internal | ||
read_schemes <- function(...) { | ||
.Deprecated("n2khabmon::read_schemes") | ||
require_pkgs("n2khabmon") | ||
n2khabmon::read_schemes(...) | ||
} | ||
|
||
|
||
|
||
#' @rdname n2khab-deprecated | ||
#' @export | ||
#' @keywords internal | ||
read_scheme_types <- function(...) { | ||
.Deprecated("n2khabmon::read_scheme_types") | ||
require_pkgs("n2khabmon") | ||
n2khabmon::read_scheme_types(...) | ||
} |
Oops, something went wrong.