Skip to content

Commit a121c63

Browse files
author
Thomas Mohme
committed
use groovy .each instead of java8 .forEach
1 parent b28e72f commit a121c63

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

benchmark/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ task btracec(type: JavaExec) {
3939
compileJava.dependsOn btracec
4040

4141

42-
['BTraceBench', 'ProfilerBenchmarks', 'StatsdBenchmarks', 'StringOpBenchmarks'].forEach { className ->
42+
['BTraceBench', 'ProfilerBenchmarks', 'StatsdBenchmarks', 'StringOpBenchmarks'].each { className ->
4343
task(type: JavaExec, className) {
4444
group 'Verification'
4545
description "Run benchmark for class ${className}."

0 commit comments

Comments
 (0)