Remove dead code from java-conventions (#5306)

This commit is contained in:
Anuraag Agrawal 2023-03-21 01:03:20 +09:00 committed by GitHub
parent 3581d6e642
commit ff79d892a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 10 deletions

View File

@ -205,16 +205,6 @@ dependencies {
compileOnly("javax.annotation:javax.annotation-api")
}
class TestArgumentsProvider(
@InputFile
@PathSensitive(PathSensitivity.RELATIVE)
val loggingProperties: File,
) : CommandLineArgumentProvider {
override fun asArguments() = listOf(
"-Djava.util.logging.config.file=${loggingProperties.absolutePath}",
)
}
testing {
suites.withType(JvmTestSuite::class).configureEach {
dependencies {