Skip to content

Commit 53bac61

Browse files
committed
update log
1 parent e5863b6 commit 53bac61

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

core-kotlin-modules/core-kotlin-collections-6/src/test/kotlin/com/baeldung/parallelOperationsCollections/ParallelOperationCollectionsUnitTest.kt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,7 @@ class ParallelOperationCollectionsUnitTest {
4848

4949
private fun Person.setAdult() {
5050
this.isAdult = this.age >= 18
51-
val line = " ".repeat(32 - Thread.currentThread().name.length)
52-
logger.info("{} {}", line, this)
51+
logger.info("{} {}", " ".repeat(32 - Thread.currentThread().name.length), this)
5352
}
5453

5554
private fun Instant.printTotalTime() {

0 commit comments

Comments
 (0)