Skip to content

Commit

Permalink
remove unnecessary delims
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksnyder committed Jan 28, 2024
1 parent 9942436 commit 0d05ba8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions v2/i18n/message_template.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ func (mt *MessageTemplate) Execute(pluralForm plural.Form, data interface{}, fun
}
}
engine := &TextTemplateEngine{
LeftDelim: t.LeftDelim,
RightDelim: t.RightDelim,
Funcs: funcs,
Funcs: funcs,
}
return t.execute(engine, data)

Check warning on line 65 in v2/i18n/message_template.go

View check run for this annotation

Codecov / codecov/patch

v2/i18n/message_template.go#L62-L65

Added lines #L62 - L65 were not covered by tests
}
Expand Down

0 comments on commit 0d05ba8

Please sign in to comment.