Skip to content

Commit

Permalink
CIRC-2099 removed loggers
Browse files Browse the repository at this point in the history
  • Loading branch information
SreejaMangarapu committed Jul 26, 2024
1 parent 391c507 commit c7d947e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public CompletableFuture<Result<CirculationSetting>> getById(String id) {
public CompletableFuture<Result<MultipleRecords<CirculationSetting>>> findBy(String query) {
return circulationSettingsStorageClient.getManyWithRawQueryStringParameters(query)
.thenApply(flatMapResult(response ->
MultipleRecords.from(response, CirculationSetting::from, RECORDS_PROPERTY_NAME)));
MultipleRecords.from(response, CirculationSetting::from, RECORDS_PROPERTY_NAME)));
}

public CompletableFuture<Result<CirculationSetting>> create(
Expand Down

0 comments on commit c7d947e

Please sign in to comment.