Skip to content

Commit

Permalink
Fix "override modifier required to override concrete member"
Browse files Browse the repository at this point in the history
  • Loading branch information
mkurz committed Oct 8, 2024
1 parent c147a4b commit a4f1e78
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ class MailerPluginSpec extends Specification {
override def getContainer = super.getContainer
}
class MockHtmlEmail extends HtmlEmail {
def getHtml = this.html
def getText = this.text
override def getHtml = this.html
override def getText = this.text
override def getPrimaryBodyPart = super.getPrimaryBodyPart
override def getContainer = super.getContainer
}
Expand Down

0 comments on commit a4f1e78

Please sign in to comment.