Skip to content

Commit

Permalink
Apply ktfmt formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
ctubbsii committed Aug 10, 2023
1 parent f073c9a commit 2b3dbfc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,8 @@ class TestHandler : ThriftTest {
override suspend fun testNest(thing: Xtruct2): Xtruct2 {
val thing2: Xtruct = thing.struct_thing!!
logger.info(
"""testNest({${thing.byte_thing}, {"${thing2.string_thing}", ${thing2.byte_thing}, ${thing2.i32_thing}, ${thing2.i64_thing}}, ${thing.i32_thing}})""".trimIndent()
"""testNest({${thing.byte_thing}, {"${thing2.string_thing}", ${thing2.byte_thing}, ${thing2.i32_thing}, ${thing2.i64_thing}}, ${thing.i32_thing}})"""
.trimIndent()
)
return thing
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ object TestServer {

internal class TestServerEventHandler() : TServerEventHandler {
private var nextConnectionId = 1

override fun preServe() {
println(
"TServerEventHandler.preServe - called only once before server starts accepting connections"
Expand Down

0 comments on commit 2b3dbfc

Please sign in to comment.