From cd863c5557ce760822b4f7085e3ca3b4ed0a7ece Mon Sep 17 00:00:00 2001 From: Marcin Grzejszczak Date: Wed, 11 Feb 2015 17:37:38 +0100 Subject: [PATCH] [#20] Introduced concurrent set --- README.md | 2 +- test_profiling.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 13a9aa5..b9eab70 100644 --- a/README.md +++ b/README.md @@ -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' } ``` diff --git a/test_profiling.gradle b/test_profiling.gradle index 0c3ed87..ddb4f19 100644 --- a/test_profiling.gradle +++ b/test_profiling.gradle @@ -24,7 +24,7 @@ class ReportRow { Double testClassExecutionTime } -Set testExecutionResults = [] as Set +Set testExecutionResults = Collections.concurrentSet(new HashSet()) allprojects {