Skip to content

Commit

Permalink
chore: apply code formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Sotatek-DucPhung committed Jul 2, 2024
1 parent aa05c89 commit 671d0b6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public CompletableFuture<Boolean> fetchData(List<String> poolIds) {
int currentEpoch = epochService.getCurrentEpoch();
var dataFromKoios = getPoolInfoList(poolIds);

if(CollectionUtils.isEmpty(dataFromKoios)) {
if (CollectionUtils.isEmpty(dataFromKoios)) {
return CompletableFuture.completedFuture(Boolean.TRUE);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public CompletableFuture<Boolean> fetchData(String poolId) {
var dataFromKoios = getPoolHistoryList(poolId);
var poolHistoryCheckpoint = poolHistoryCheckpointRepository.findByView(poolId);

if(CollectionUtils.isEmpty(dataFromKoios)) {
if (CollectionUtils.isEmpty(dataFromKoios)) {
return CompletableFuture.completedFuture(Boolean.TRUE);
}

Expand Down

0 comments on commit 671d0b6

Please sign in to comment.