[SUREFIRE] refactoring
Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/fd293d89 Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/fd293d89 Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/fd293d89 Branch: refs/heads/master Commit: fd293d8971c0c869fca6ee9cd9d17145b9a76bd1 Parents: 68246e2 Author: Tibor17 <tibo...@lycos.com> Authored: Sun Dec 11 13:28:37 2016 +0100 Committer: Tibor17 <tibo...@lycos.com> Committed: Sun Dec 11 13:28:37 2016 +0100 ---------------------------------------------------------------------- .../apache/maven/surefire/booter/ClasspathConfiguration.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/fd293d89/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ClasspathConfiguration.java ---------------------------------------------------------------------- diff --git a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ClasspathConfiguration.java b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ClasspathConfiguration.java index d582f3c..3389a37 100644 --- a/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ClasspathConfiguration.java +++ b/surefire-booter/src/main/java/org/apache/maven/surefire/booter/ClasspathConfiguration.java @@ -82,7 +82,7 @@ public class ClasspathConfiguration throws SurefireExecutionException { return Classpath.join( inprocClasspath, classpathUrls ) - .createClassLoader( null, this.childDelegation, enableAssertions, "test" ); + .createClassLoader( null, childDelegation, enableAssertions, "test" ); } public Classpath getProviderClasspath() @@ -90,8 +90,7 @@ public class ClasspathConfiguration return surefireClasspathUrls; } - - public Classpath getTestClasspath() + public Classpath getTestClasspath() { return classpathUrls; }