From a8d6b435a4a31ec3f31cfbcb50e56db365b9a99b Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 8 May 2013 14:32:13 -0700 Subject: [PATCH] Minor Javadoc polish --- .../bootstrap/cli/compiler/ExtendedGroovyClassLoader.java | 2 +- .../autoconfigure/SpringBootstrapCompilerAutoConfiguration.java | 2 +- .../springframework/bootstrap/cli/runner/BootstrapRunner.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/ExtendedGroovyClassLoader.java b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/ExtendedGroovyClassLoader.java index 9006c3afdd..14796a63cf 100644 --- a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/ExtendedGroovyClassLoader.java +++ b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/ExtendedGroovyClassLoader.java @@ -31,7 +31,7 @@ import org.codehaus.groovy.control.CompilerConfiguration; import org.codehaus.groovy.control.SourceUnit; /** - * Extension of the {@link GroovyClassLoader} that support for obtaining '.class' files as + * Extension of the {@link GroovyClassLoader} with support for obtaining '.class' files as * resources. * * @author Phillip Webb diff --git a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/autoconfigure/SpringBootstrapCompilerAutoConfiguration.java b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/autoconfigure/SpringBootstrapCompilerAutoConfiguration.java index 2a6ed592d7..2e808625f1 100644 --- a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/autoconfigure/SpringBootstrapCompilerAutoConfiguration.java +++ b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/compiler/autoconfigure/SpringBootstrapCompilerAutoConfiguration.java @@ -34,7 +34,7 @@ import org.springframework.bootstrap.cli.compiler.GroovyCompilerConfiguration; /** * {@link CompilerAutoConfiguration} for Spring Bootstrap. - * + * * @author Dave Syer * @author Phillip Webb */ diff --git a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/runner/BootstrapRunner.java b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/runner/BootstrapRunner.java index b18a48032e..45a4832422 100644 --- a/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/runner/BootstrapRunner.java +++ b/spring-bootstrap-cli/src/main/java/org/springframework/bootstrap/cli/runner/BootstrapRunner.java @@ -67,7 +67,7 @@ public class BootstrapRunner { /** * Compile and run the application. This method is synchronized as it can be called by * file monitoring threads. - * @throws Exception + * @throws Exception on error */ public synchronized void compileAndRun() throws Exception { try {