File tree Expand file tree Collapse file tree 2 files changed +2
-16
lines changed
plugins/kotlin-dataframe/src/org/jetbrains/kotlinx/dataframe/plugin Expand file tree Collapse file tree 2 files changed +2
-16
lines changed Original file line number Diff line number Diff line change @@ -35,18 +35,6 @@ interface KotlinTypeFacade {
35
35
36
36
fun Marker.type () = type
37
37
38
- val anyDataFrame get() = ConeClassLikeTypeImpl (
39
- ConeClassLikeLookupTagImpl (Names .DF_CLASS_ID ),
40
- typeArguments = arrayOf(session.builtinTypes.anyType.type),
41
- isNullable = false
42
- ).wrap()
43
-
44
- val anyRow get() = ConeClassLikeTypeImpl (
45
- ConeClassLikeLookupTagImpl (Names .DATA_ROW_CLASS_ID ),
46
- typeArguments = arrayOf(session.builtinTypes.anyType.type),
47
- isNullable = false
48
- ).wrap()
49
-
50
38
fun from (type : KType ): Marker {
51
39
return Marker (fromImpl(type))
52
40
}
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ import org.jetbrains.kotlinx.dataframe.api.Infer
11
11
import org.jetbrains.kotlinx.dataframe.api.pathOf
12
12
import org.jetbrains.kotlinx.dataframe.api.toPath
13
13
import org.jetbrains.kotlinx.dataframe.impl.api.GenericColumnsToInsert
14
- import org.jetbrains.kotlinx.dataframe.impl.api.GenericColumnGroup
15
14
import org.jetbrains.kotlinx.dataframe.impl.api.insertImplGenericContainer
16
15
import org.jetbrains.kotlinx.dataframe.plugin.impl.PluginDataFrameSchema
17
16
import org.jetbrains.kotlinx.dataframe.plugin.impl.SimpleCol
@@ -125,10 +124,9 @@ internal class Under4 : AbstractInterpreter<PluginDataFrameSchema>() {
125
124
126
125
@PublishedApi
127
126
internal fun PluginDataFrameSchema.insertImpl (
128
- columns : List <GenericColumnsToInsert <SimpleCol >>,
129
- columnGroupType : TypeApproximation
127
+ columns : List <GenericColumnsToInsert <SimpleCol >>
130
128
): PluginDataFrameSchema {
131
- return insertImplGenericContainer< PluginDataFrameSchema , SimpleCol , GenericColumnGroup < SimpleCol >> (
129
+ return insertImplGenericContainer(
132
130
this ,
133
131
columns,
134
132
columns.firstOrNull()?.referenceNode?.getRoot(),
You can’t perform that action at this time.
0 commit comments