Skip to content
This repository was archived by the owner on Apr 20, 2023. It is now read-only.

Commit ee2127b

Browse files
committed
Fix linting error
1 parent 28995d3 commit ee2127b

File tree

1 file changed

+1
-11
lines changed
  • kotlin-react-function-plugin/src/main/kotlin/com/bnorm/react

1 file changed

+1
-11
lines changed

kotlin-react-function-plugin/src/main/kotlin/com/bnorm/react/irUtils.kt

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -91,16 +91,6 @@ PROPERTY name:name visibility:public modality:ABSTRACT [var]
9191
correspondingProperty: PROPERTY name:name visibility:public modality:ABSTRACT [var]
9292
$this: VALUE_PARAMETER name:<this> type:test.HomeProps
9393
VALUE_PARAMETER name:<set-?> index:0 type:kotlin.String
94-
95-
96-
PROPERTY name:items visibility:public modality:ABSTRACT [var]
97-
FUN DEFAULT_PROPERTY_ACCESSOR name:<get-items> visibility:public modality:ABSTRACT <> ($this:<root>.GenericListProps<T of <root>.GenericListProps>) returnType:kotlin.collections.List<T of <root>.GenericListProps>
98-
correspondingProperty: PROPERTY name:items visibility:public modality:ABSTRACT [var]
99-
$this: VALUE_PARAMETER name:<this> type:<root>.GenericListProps<T of <root>.GenericListProps>
100-
FUN DEFAULT_PROPERTY_ACCESSOR name:<set-items> visibility:public modality:ABSTRACT <> ($this:<root>.GenericListProps<T of <root>.GenericListProps>, <set-?>:kotlin.collections.List<T of <root>.GenericListProps>) returnType:kotlin.Unit
101-
correspondingProperty: PROPERTY name:items visibility:public modality:ABSTRACT [var]
102-
$this: VALUE_PARAMETER name:<this> type:<root>.GenericListProps<T of <root>.GenericListProps>
103-
VALUE_PARAMETER name:<set-?> index:0 type:kotlin.collections.List<T of <root>.GenericListProps>
10494
*/
10595

10696
val irProperty = container.addProperty {
@@ -229,7 +219,7 @@ internal fun IrFactory.buildFunction(builder: IrFunctionBuilder): IrSimpleFuncti
229219

230220
class TypeSubstituteRemapper(
231221
private val substitutionMap: Map<IrTypeParameterSymbol, IrType>
232-
) : TypeRemapper {
222+
) : TypeRemapper {
233223
override fun remapType(type: IrType): IrType = type.substitute(substitutionMap)
234224

235225
override fun enterScope(irTypeParametersContainer: IrTypeParametersContainer) = Unit

0 commit comments

Comments
 (0)