[SUREFIRE] refactoring removed jdk6 IOException constructor
Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/4bd7231b Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/4bd7231b Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/4bd7231b Branch: refs/heads/master Commit: 4bd7231b9881691f2300a65b74cbea7972d27e43 Parents: 81e667b Author: Tibor17 <tibo...@lycos.com> Authored: Mon Jul 13 23:24:03 2015 +0200 Committer: Tibor17 <tibo...@lycos.com> Committed: Thu Jul 23 23:28:08 2015 +0200 ---------------------------------------------------------------------- .../booterclient/lazytestprovider/TestProvidingInputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/4bd7231b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/lazytestprovider/TestProvidingInputStream.java ---------------------------------------------------------------------- diff --git a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/lazytestprovider/TestProvidingInputStream.java b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/lazytestprovider/TestProvidingInputStream.java index e08edf7..eb1ab03 100644 --- a/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/lazytestprovider/TestProvidingInputStream.java +++ b/maven-surefire-common/src/main/java/org/apache/maven/plugin/surefire/booterclient/lazytestprovider/TestProvidingInputStream.java @@ -144,7 +144,7 @@ public class TestProvidingInputStream } catch ( InterruptedException e ) { - throw new IOException( e ); + throw new IOException( e.getLocalizedMessage() ); } }