Remove unnecessary parentheses
This commit is contained in:
parent
3e99d8f709
commit
3334736934
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ dependencies {
|
|||
implementation(project(":common"))
|
||||
}
|
||||
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile>() {
|
||||
tasks.withType<org.jetbrains.kotlin.gradle.tasks.KotlinCompile> {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@ dependencies {
|
|||
implementation(project(":common"))
|
||||
}
|
||||
|
||||
tasks.withType<KotlinCompile>() {
|
||||
tasks.withType<KotlinCompile> {
|
||||
kotlinOptions.jvmTarget = "1.8"
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue