Skip to content

Commit

Permalink
[#20] Introduced concurrent set
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcin Grzejszczak committed Feb 11, 2015
1 parent 170483c commit cd863c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For the time being just enter in your project

```
if (project.hasProperty('testsProfiling')) {
apply from: 'https://raw.githubusercontent.com/marcingrzejszczak/gradle-test-profiler/0.0.2/test_profiling.gradle'
apply from: 'https://raw.githubusercontent.com/marcingrzejszczak/gradle-test-profiler/0.0.4/test_profiling.gradle'
}
```

Expand Down
2 changes: 1 addition & 1 deletion test_profiling.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class ReportRow {
Double testClassExecutionTime
}

Set<TestExecutionResult> testExecutionResults = [] as Set
Set<TestExecutionResult> testExecutionResults = Collections.concurrentSet(new HashSet<TestExecutionResult>())

allprojects {

Expand Down

0 comments on commit cd863c5

Please sign in to comment.