Skip to content

Commit

Permalink
Convert to function syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Philippus committed Nov 9, 2024
1 parent 4a452f8 commit fbc50d2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ object ScapegoatSbtPlugin extends AutoPlugin {

import autoImport._

def doScapegoatClean(force: Boolean, classesDir: File, log: Logger) {
def doScapegoatClean(force: Boolean, classesDir: File, log: Logger): Unit = {
if (force) {
log.info(s"[scapegoat] Removing scapegoat class directory: $classesDir")
IO.delete(Seq(classesDir))
Expand Down

0 comments on commit fbc50d2

Please sign in to comment.