Skip to content

Commit

Permalink
Build: Fix Scala 2.12 unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
raquo committed Jan 3, 2023
1 parent d6978d5 commit 7f7ce10
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ abstract class SourceGenerator(format: CodeFormatting) extends SourceRepr {
output.append(currentIndent)
output.append(str)
output.append("\n")
()
}

protected def line(strs: String*): Unit = {
Expand All @@ -45,6 +46,7 @@ abstract class SourceGenerator(format: CodeFormatting) extends SourceRepr {

protected def line(): Unit = {
output.append("\n")
()
}

protected def classParamLine(name: String, value: String): Unit = {
Expand Down

0 comments on commit 7f7ce10

Please sign in to comment.