Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
aajtodd committed Mar 21, 2022
1 parent feb2648 commit 7d71cff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import aws.smithy.kotlin.runtime.http.engine.crt.CrtHttpEngine
/**
* Printable ASCII characters
*/
val PRINTABLE_CHARS = ByteArray(127 - 32) { (it + 32).toByte() }.decodeToString()
val PRINTABLE_CHARS = (32 until 127).map(Int::toChar).joinToString("")

/**
* Run the [block] with each supported engine
Expand Down

0 comments on commit 7d71cff

Please sign in to comment.