Skip to content

Commit

Permalink
#187 fix wrapping
Browse files Browse the repository at this point in the history
  • Loading branch information
eblondel committed Oct 31, 2022
1 parent a3dc3da commit ae3647a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions R/SWECount.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ SWECount <- R6Class("SWECount",
super$initialize(xml, element = private$xmlElement,
updatable = updatable, optional = optional, definition = definition)
if(is.null(xml)){
self$constraint <- constraint
self$value <- value
self$setConstraint(constraint)
self$setValue(value)
}
},

Expand Down
4 changes: 2 additions & 2 deletions R/SWEText.R
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ SWEText <- R6Class("SWEText",
super$initialize(xml, element = private$xmlElement,
updatable = updatable, optional = optional, definition = definition)
if(is.null(xml)){
self$constraint <- constraint
self$value <- value
self$setConstraint(constraint)
self$setValue(value)
}
},

Expand Down

0 comments on commit ae3647a

Please sign in to comment.