Skip to content

Commit

Permalink
# removed invalid modifier
Browse files Browse the repository at this point in the history
  • Loading branch information
sbra0902 committed Aug 24, 2023
1 parent 3473656 commit 96dc632
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion remoter/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
compileOnly("net.ltgt.gradle.incap:incap:0.2")
annotationProcessor("net.ltgt.gradle.incap:incap-processor:0.2")

api 'com.squareup:kotlinpoet:1.5.0'
api 'com.squareup:kotlinpoet:1.13.2'

compileOnly "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
compileOnly 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.3'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ internal class KClassBuilder(element: Element, bindingManager: KBindingManager)
.primaryConstructor(FunSpec.constructorBuilder()
.addParameter(ParameterSpec.builder("remoteBinder",
ClassName("android.os", "IBinder").copy(true))
.addModifiers(KModifier.PRIVATE)
.build()).build())

.addProperty(PropertySpec.builder("remoteBinder", ClassName("android.os", "IBinder")
Expand Down

0 comments on commit 96dc632

Please sign in to comment.