Skip to content

Commit

Permalink
Minor: use List
Browse files Browse the repository at this point in the history
  • Loading branch information
ebruchez committed Nov 11, 2023
1 parent 8569b44 commit e8a1df1
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -187,8 +187,8 @@ trait ModelContainer {
} yield
new XFormsModel(self, modelEffectiveId, model)

def initializeModels(eventsToDispatch: immutable.Seq[String]): Unit =
for (eventName <- eventsToDispatch){
def initializeModels(eventsToDispatch: List[String]): Unit =
for (eventName <- eventsToDispatch) {
if (eventName == XFORMS_READY) {
initializeNestedControls()
requireRefresh()
Expand Down

0 comments on commit e8a1df1

Please sign in to comment.