Skip to content

Commit

Permalink
Remove unused InputChanges parameter (#272)
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo authored Jan 15, 2024
1 parent 8fd12bf commit d97f6c3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import org.gradle.api.tasks.*
import org.gradle.api.tasks.compile.AbstractCompile
import org.gradle.process.ExecResult
import org.gradle.process.JavaExecSpec
import org.gradle.work.InputChanges

import java.nio.file.Files
import java.nio.file.Path
Expand Down Expand Up @@ -70,7 +69,7 @@ class GroovyPageForkCompileTask extends AbstractCompile {
}

@TaskAction
void execute(InputChanges inputs) {
void execute() {
compile()
}

Expand Down

0 comments on commit d97f6c3

Please sign in to comment.