Skip to content

Commit e6cf6f1

Browse files
committed
Apply ktLintFormat to DataColumnArithmetics.kt and its tests. Remove redundant comment.
1 parent 3005568 commit e6cf6f1

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

core/src/main/kotlin/org/jetbrains/kotlinx/dataframe/api/DataColumnArithmetics.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,6 @@ private interface NumberPlusColumnDocs {
284284
typealias NUMBER_PLUS_COLUMN_NULL_NOTE = Nothing
285285
}
286286

287-
// Is it possible to refer specifically to `Int.minus(column: DataColumn<Int>)` and not to `Int.minus(other: Byte)`?
288287
/**
289288
* @include [NumberPlusColumnDocs]
290289
* @set [NUMBER_PLUS_COLUMN_SEE_ALSO] [minus][DataColumn.minus], [times][DataColumn.times], [div][DataColumn.div]

core/src/test/kotlin/org/jetbrains/kotlinx/dataframe/api/DataColumnArithmetics.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ class DataColumnArithmeticsTests {
464464
age / 0.0 shouldBe columnOf(
465465
Double.POSITIVE_INFINITY,
466466
Double.POSITIVE_INFINITY,
467-
Double.POSITIVE_INFINITY
467+
Double.POSITIVE_INFINITY,
468468
)
469469
}
470470

@@ -487,12 +487,12 @@ class DataColumnArithmeticsTests {
487487
age / 0 shouldBe columnOf(
488488
Double.POSITIVE_INFINITY,
489489
Double.POSITIVE_INFINITY,
490-
Double.POSITIVE_INFINITY
490+
Double.POSITIVE_INFINITY,
491491
)
492492
age / 0.0 shouldBe columnOf(
493493
Double.POSITIVE_INFINITY,
494494
Double.POSITIVE_INFINITY,
495-
Double.POSITIVE_INFINITY
495+
Double.POSITIVE_INFINITY,
496496
)
497497
}
498498

0 commit comments

Comments
 (0)