We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c69901f commit e5fff72Copy full SHA for e5fff72
module-communication-ksp/src/main/java/com/flyjingfish/module_communication_ksp/Expansions.kt
@@ -5,7 +5,7 @@ import com.google.devtools.ksp.symbol.KSClassDeclaration
5
6
fun KSClassDeclaration.isSubtype(superType :String):Boolean{
7
getAllSuperTypes().toList().forEach {
8
- val className = "${it.declaration.packageName.asString()}.${it}"
+ val className = "${it.declaration.packageName.asString()}.${it.declaration}"
9
if (className == superType){
10
return true
11
}
0 commit comments