Skip to content

Commit a37b322

Browse files
committed
chore
1 parent 6070d8d commit a37b322

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

api-client/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,17 +44,17 @@ dependencies {
4444
}
4545
implementation("de.gesellix:docker-remote-api-model-1-41") {
4646
version {
47-
strictly("[2023-10-01T01-01-01,)")
47+
strictly("[2024-01-01T01-01-01,)")
4848
}
4949
}
5050
implementation("de.gesellix:docker-engine") {
5151
version {
52-
strictly("[2023-10-01T01-01-01,)")
52+
strictly("[2024-01-01T01-01-01,)")
5353
}
5454
}
5555
implementation("de.gesellix:docker-filesocket") {
5656
version {
57-
strictly("[2023-09-30T01-01-01,)")
57+
strictly("[2024-01-01T01-01-01,)")
5858
}
5959
}
6060
implementation("org.slf4j:slf4j-api") {

api-client/src/main/kotlin/de/gesellix/docker/remote/api/core/ApiClient.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ open class ApiClient(
136136
return requestStream(request, client)
137137
}
138138

139-
protected inline fun requestFrames(requestConfig: RequestConfig, expectMultiplexedResponse: Boolean = false): ApiInfrastructureResponse<Frame> {
139+
protected fun requestFrames(requestConfig: RequestConfig, expectMultiplexedResponse: Boolean = false): ApiInfrastructureResponse<Frame> {
140140
val engineRequest = EngineRequest(requestConfig.method, requestConfig.path).also {
141141
it.headers = requestConfig.headers
142142
it.query = requestConfig.query
@@ -302,7 +302,7 @@ open class ApiClient(
302302
}
303303
}
304304

305-
protected inline fun requestFrames(request: Request, client: OkHttpClient, expectMultiplexedResponse: Boolean = false): ApiInfrastructureResponse<Frame> {
305+
protected fun requestFrames(request: Request, client: OkHttpClient, expectMultiplexedResponse: Boolean = false): ApiInfrastructureResponse<Frame> {
306306
val response = client.newCall(request).execute()
307307
val mediaType = response.header(ContentType)?.substringBefore(";")?.lowercase(Locale.getDefault())
308308

api-client/src/main/kotlin/de/gesellix/docker/remote/api/core/ResponseConsumer.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ inline fun <reified T : Any?> ResponseBody?.consumeStream(mediaType: String?): F
5757
}
5858
}
5959

60-
inline fun ResponseBody?.consumeFrames(mediaType: String?, expectMultiplexedResponse: Boolean = false): Flow<Frame> {
60+
fun ResponseBody?.consumeFrames(mediaType: String?, expectMultiplexedResponse: Boolean = false): Flow<Frame> {
6161
if (this == null) {
6262
return emptyFlow()
6363
}

api-client/src/test/java/de/gesellix/docker/remote/api/client/ImageApiIntegrationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
@DockerEngineAvailable
6666
class ImageApiIntegrationTest {
6767

68-
private static Logger log = LoggerFactory.getLogger(ImageApiIntegrationTest.class);
68+
private static final Logger log = LoggerFactory.getLogger(ImageApiIntegrationTest.class);
6969

7070
@InjectDockerClient
7171
private EngineApiClient engineApiClient;

0 commit comments

Comments
 (0)