Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clean build.gradle.
  • Loading branch information
sarahchen6 committed Mar 7, 2025
commit 65411ad1c0c3cd7d87c75e148b536b1b426ffb0c
8 changes: 0 additions & 8 deletions dd-smoke-tests/concurrent/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,6 @@ test {
useJUnitPlatform()
}

jar {
manifest {
attributes(
'Main-Class': 'datadog.smoketest.concurrent.ConcurrentApp'
)
}
}

tasks.withType(Test).configureEach {
dependsOn "shadowJar"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ static void spanWrapper(String[] args) throws ExecutionException, InterruptedExc
FibonacciCalculator calc;
for (String arg : args) {
if (arg.equalsIgnoreCase("executorService")) {
calc = new demoExecutorService();
calc = new DemoExecutorService();
calc.computeFibonacci(10);
} else if (arg.equalsIgnoreCase("forkJoin")) {
calc = new DemoForkJoin();
Expand Down