Skip to content

Commit

Permalink
fix: fix minor warnings for release-please testing
Browse files Browse the repository at this point in the history
  • Loading branch information
nand4011 committed Jan 12, 2024
1 parent 3b57e7d commit 384488e
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 @@ -677,7 +677,7 @@ internal actual class InternalDataClient actual constructor(
return runCatching {
stubsManager.stub.listRemove(request, metadata)
}.fold(
onSuccess = { response ->
onSuccess = { _ ->
ListRemoveValueResponse.Success
},
onFailure = { e ->
Expand Down Expand Up @@ -727,7 +727,7 @@ internal actual class InternalDataClient actual constructor(
return runCatching {
stubsManager.stub.listRetain(request, metadata)
}.fold(
onSuccess = { response ->
onSuccess = { _ ->
ListRetainResponse.Success
},
onFailure = { e ->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -676,7 +676,7 @@ internal actual class InternalDataClient actual constructor(
return runCatching {
stubsManager.stub.listRemove(request, metadata)
}.fold(
onSuccess = { response ->
onSuccess = { _ ->
ListRemoveValueResponse.Success
},
onFailure = { e ->
Expand Down Expand Up @@ -726,7 +726,7 @@ internal actual class InternalDataClient actual constructor(
return runCatching {
stubsManager.stub.listRetain(request, metadata)
}.fold(
onSuccess = { response ->
onSuccess = { _ ->
ListRetainResponse.Success
},
onFailure = { e ->
Expand Down

0 comments on commit 384488e

Please sign in to comment.