Skip to content

Commit f7550a4

Browse files
committed
ktlint
1 parent 53deb9f commit f7550a4

File tree

5 files changed

+1
-5
lines changed

5 files changed

+1
-5
lines changed

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/io/HashingSourceTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
package aws.smithy.kotlin.runtime.io
77

8-
import aws.smithy.kotlin.runtime.IgnoreNative
98
import aws.smithy.kotlin.runtime.hashing.*
109
import kotlin.test.Test
1110
import kotlin.test.assertEquals

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/io/ObserversTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
package aws.smithy.kotlin.runtime.io
77

8-
import aws.smithy.kotlin.runtime.IgnoreNative
98
import aws.smithy.kotlin.runtime.io.internal.SdkSinkObserver
109
import aws.smithy.kotlin.runtime.io.internal.SdkSourceObserver
1110
import kotlin.test.Test

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/io/SdkByteChannelSuspendTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
package aws.smithy.kotlin.runtime.io
77

8-
import aws.smithy.kotlin.runtime.IgnoreNative
98
import aws.smithy.kotlin.runtime.testing.ManualDispatchTestBase
109
import io.kotest.matchers.string.shouldContain
1110
import kotlinx.coroutines.*

runtime/runtime-core/common/test/aws/smithy/kotlin/runtime/io/SdkByteChannelTest.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55

66
package aws.smithy.kotlin.runtime.io
77

8-
import aws.smithy.kotlin.runtime.IgnoreNative
98
import kotlinx.coroutines.launch
109
import kotlinx.coroutines.test.runTest
1110
import kotlinx.coroutines.yield

runtime/runtime-core/jvm/src/aws/smithy/kotlin/runtime/io/ExceptionsJVM.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public actual typealias IOException = java.io.IOException
99

1010
public actual open class EOFException actual constructor(
1111
message: String?,
12-
cause: Throwable?
12+
cause: Throwable?,
1313
) : java.io.EOFException(message) {
1414
init {
1515
initCause(cause)

0 commit comments

Comments
 (0)