Skip to content

Commit cc45358

Browse files
committed
ktlint
1 parent e08055e commit cc45358

File tree

1 file changed

+3
-1
lines changed
  • runtime/runtime-core/native/src/aws/smithy/kotlin/runtime/compression

1 file changed

+3
-1
lines changed

runtime/runtime-core/native/src/aws/smithy/kotlin/runtime/compression/GzipCompressor.kt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,9 @@ internal class GzipCompressor {
9494
* that represent the end of the gzip compression.
9595
*/
9696
fun close(): ByteArray {
97-
if (isClosed) { return byteArrayOf() }
97+
if (isClosed) {
98+
return byteArrayOf()
99+
}
98100

99101
memScoped {
100102
var finished = false

0 commit comments

Comments
 (0)