Skip to content

Commit

Permalink
closes #166
Browse files Browse the repository at this point in the history
  • Loading branch information
gluc committed Nov 11, 2023
1 parent c00cbd6 commit 0f7ecfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 2 additions & 4 deletions R/node.R
Original file line number Diff line number Diff line change
Expand Up @@ -652,15 +652,13 @@ Node <- R6Class("Node",

#' @field fields Will be deprecated, use \code{attributes} instead
fields = function() {
print("Node$fields will be deprecated in the next release. Please use Node$attributes instead.")
# .Deprecated("Node$attributes", old = "Node$fields")
.Deprecated("Node$attributes", old = "Node$fields")
return(self$attributes)
},

#' @field fieldsAll Will be deprecated, use \code{attributesAll} instead
fieldsAll = function() {
print("Node$fieldsAll will be deprecated in the next release. Please use Node$attributesAll instead.")
# .Deprecated("Node$attributesAll", old = "Node$fieldsAll")
.Deprecated("Node$attributesAll", old = "Node$fieldsAll")
return(self$attributesAll)
},

Expand Down
7 changes: 4 additions & 3 deletions man/Node.Rd

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

0 comments on commit 0f7ecfc

Please sign in to comment.