Skip to content

Commit

Permalink
fix local names
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed May 6, 2022
1 parent f2b5da3 commit 7476ae1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions R/ISOAbstractGenericName.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ISOAbstractGenericName <- R6Class("ISOAbstractGenericName",
),
public = list(
value = NA,
initialize = function(xml = NULL, value, codeSpace = NULL){
super$initialize(xml = NULL, value, codeSpace = NULL)
initialize = function(xml = NULL, value = NULL, codeSpace = NULL){
super$initialize(xml = NULL, value = NULL, codeSpace = NULL)
}
)
)
2 changes: 1 addition & 1 deletion R/ISOLocalName.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ ISOLocalName <- R6Class("ISOLocalName",
),
public = list(
value = NA,
initialize = function(xml = NULL, value){
initialize = function(xml = NULL, value = NULL){
super$initialize(xml = xml, value = value)
}
)
Expand Down

0 comments on commit 7476ae1

Please sign in to comment.