Skip to content

Commit 4b40687

Browse files
committed
fix code formating
1 parent 9f41430 commit 4b40687

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
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-2.5-flash"
35+
LLM_MODEL: "gemini-1.5-flash"

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -232,6 +232,7 @@
232232
<module>template-method</module>
233233
<module>templateview</module>
234234
<module>thread-pool-executor</module>
235+
<module>thread-specific-storage</module>
235236
<module>throttling</module>
236237
<module>tolerant-reader</module>
237238
<module>trampoline</module>

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

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

3534
/**
@@ -68,7 +67,7 @@ public static void main(String[] args) throws InterruptedException, ExecutionExc
6867
}
6968

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

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

0 commit comments

Comments
 (0)