Skip to content

Commit

Permalink
refactor: 피드백 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
youngsu5582 committed Nov 25, 2024
1 parent 6ca2bc3 commit fce4820
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/src/main/java/corea/global/util/FutureUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public static <T> CompletableFuture<T> supplyAsync(Supplier<T> supplier) {
return CompletableFuture.supplyAsync(supplier);
}

public static <T> CompletableFuture<T> supplyAsync(final Supplier<T> supplier, final Executor executor) {
public static <T> CompletableFuture<T> supplyAsync(Supplier<T> supplier, Executor executor) {
return CompletableFuture.supplyAsync(supplier, executor);
}
}

0 comments on commit fce4820

Please sign in to comment.