Skip to content

Commit d9f28b6

Browse files
committed
fixed model name
1 parent 35374f9 commit d9f28b6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/presubmit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
env:
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
35-
LLM_MODEL: "gemini-1.5-flash"
35+
LLM_MODEL: "gemini-2.5-flash"

thread-pool-executor/src/main/java/com/iluwatar/threadpoolexecutor/App.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import java.util.concurrent.ExecutionException;
3030
import java.util.concurrent.Future;
3131
import java.util.concurrent.TimeUnit;
32+
3233
import lombok.extern.slf4j.Slf4j;
3334

3435
/**
@@ -67,7 +68,7 @@ public static void main(String[] args) throws InterruptedException, ExecutionExc
6768
}
6869

6970
LOGGER.info("Processing 3 VIP guest check-ins...");
70-
List<Future<String>> vipResults = new ArrayList<>();
71+
List<Future<String>> vipResults = new ArrayList<>() ;
7172

7273
for (int i = 1; i <= 3; i++) {
7374
Future<String> result =

0 commit comments

Comments
 (0)