Skip to content

Commit 8c6ea92

Browse files
committed
linter...
1 parent 203648d commit 8c6ea92

File tree

2 files changed

+2
-2
lines changed
  • core
    • generated-sources/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types
    • src/test/kotlin/org/jetbrains/kotlinx/dataframe/types

2 files changed

+2
-2
lines changed

core/generated-sources/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/UtilTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class UtilTests {
168168
interface TypeWithUpperbound1<T : UpperBound>
169169
interface TestType1<T : UpperBound> : TypeWithUpperbound1<T>
170170
interface TestTypeIn1<in T> : Comparable<T>
171-
interface TestType2<S: UpperBound> : TestTypeIn1<TestType1<S>>
171+
interface TestType2<S : UpperBound> : TestTypeIn1<TestType1<S>>
172172

173173
@Test
174174
fun replaceGenericTypeParametersWithUpperbound() {

core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/types/UtilTests.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ class UtilTests {
168168
interface TypeWithUpperbound1<T : UpperBound>
169169
interface TestType1<T : UpperBound> : TypeWithUpperbound1<T>
170170
interface TestTypeIn1<in T> : Comparable<T>
171-
interface TestType2<S: UpperBound> : TestTypeIn1<TestType1<S>>
171+
interface TestType2<S : UpperBound> : TestTypeIn1<TestType1<S>>
172172

173173
@Test
174174
fun replaceGenericTypeParametersWithUpperbound() {

0 commit comments

Comments
 (0)