Skip to content

Commit

Permalink
Merge pull request #47 from momentohq/fix-warnings
Browse files Browse the repository at this point in the history
fix: fix minor warnings for release-please testing
  • Loading branch information
nand4011 authored Jan 12, 2024
2 parents 3b57e7d + 384488e commit 42d622d
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 42d622d

Please sign in to comment.