Skip to content

Commit

Permalink
fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
pkwarren committed Nov 9, 2023
1 parent b9aa8f5 commit 3558b3c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import java.util.concurrent.TimeUnit
class ConformanceTest(
protocol: NetworkProtocol,
serverType: ServerType,
): BaseConformanceTest(protocol, serverType) {
) : BaseConformanceTest(protocol, serverType) {

private lateinit var unimplementedServiceClient: UnimplementedServiceClient
private lateinit var testServiceConnectClient: TestServiceClient
Expand Down Expand Up @@ -701,4 +701,4 @@ class ConformanceTest(
assertThat(countDownLatch.count).isZero()
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ import java.util.concurrent.TimeUnit
class ConformanceTest(
protocol: NetworkProtocol,
serverType: ServerType,
): BaseConformanceTest(protocol, serverType) {
) : BaseConformanceTest(protocol, serverType) {

private lateinit var unimplementedServiceClient: UnimplementedServiceClient
private lateinit var testServiceConnectClient: TestServiceClient
Expand Down Expand Up @@ -701,4 +701,4 @@ class ConformanceTest(
assertThat(countDownLatch.count).isZero()
}
}
}
}

0 comments on commit 3558b3c

Please sign in to comment.