Skip to content

Commit

Permalink
fix ISOAbstractGenericName
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed May 5, 2022
1 parent 9e3f411 commit 3995a8c
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions R/ISOAbstractGenericName.R
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,8 @@ ISOAbstractGenericName <- R6Class("ISOAbstractGenericName",
),
public = list(
value = NA,
initialize = function(xml = NULL, value){
super$initialize(xml = xml)
if(is.null(xml)){
self$value = value
}
initialize = function(xml = NULL, value, codeSpace = NULL){
super$initialize(xml = NULL, value, codeSpace = NULL)
}
)
)

0 comments on commit 3995a8c

Please sign in to comment.