Skip to content

Commit 0fa9409

Browse files
koperagenSpace Team
authored andcommitted
[KDF] Remove outdated annotation check
1 parent 3aed3ec commit 0fa9409

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

plugins/kotlin-dataframe/kotlin-dataframe.k2/src/org/jetbrains/kotlinx/dataframe/plugin/extensions/FunctionCallTransformer.kt

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -133,9 +133,7 @@ class FunctionCallTransformer(
133133
}
134134
val noRefineAnnotation =
135135
symbol.resolvedAnnotationClassIds.none { it.shortClassName == Name.identifier("Refine") }
136-
val optIn = symbol.resolvedAnnotationClassIds.any { it.shortClassName == Name.identifier("OptInRefine") } &&
137-
callSiteAnnotations.any { it.fqName(session)?.shortName()?.equals(Name.identifier("Import")) == true }
138-
if (noRefineAnnotation && !optIn) {
136+
if (noRefineAnnotation) {
139137
return null
140138
}
141139

0 commit comments

Comments
 (0)