Browse Source

Remove some compiler warnings

pull/1016/head
Dave Syer 12 years ago
parent
commit
efcbb32788
  1. 1
      spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/rest/RepositoryRestMvcAutoConfiguration.java
  2. 2
      spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/batch/JobLauncherCommandLineRunnerTests.java
  3. 10
      spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java

1
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/rest/RepositoryRestMvcAutoConfiguration.java

@ -20,7 +20,6 @@ import org.springframework.boot.autoconfigure.EnableAutoConfiguration; @@ -20,7 +20,6 @@ import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
import org.springframework.boot.autoconfigure.condition.ConditionalOnClass;
import org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean;
import org.springframework.boot.autoconfigure.condition.ConditionalOnWebApplication;
import org.springframework.boot.autoconfigure.data.JpaRepositoriesAutoConfiguration;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Import;
import org.springframework.data.rest.webmvc.config.RepositoryRestMvcConfiguration;

2
spring-boot-autoconfigure/src/test/java/org/springframework/boot/autoconfigure/batch/JobLauncherCommandLineRunnerTests.java

@ -152,7 +152,7 @@ public class JobLauncherCommandLineRunnerTests { @@ -152,7 +152,7 @@ public class JobLauncherCommandLineRunnerTests {
this.transactionManager);
public BatchConfiguration() throws Exception {
this.jobRepository = this.jobRepositoryFactory.getJobRepository();
this.jobRepository = this.jobRepositoryFactory.getObject();
}
public void clear() {

10
spring-boot-cli/src/main/java/org/springframework/boot/cli/command/jar/JarCommand.java

@ -59,7 +59,6 @@ import org.springframework.boot.loader.tools.Layouts; @@ -59,7 +59,6 @@ import org.springframework.boot.loader.tools.Layouts;
import org.springframework.core.io.Resource;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.util.Assert;
import org.springframework.util.ClassUtils;
/**
* {@link Command} to create a self-contained executable jar file from a CLI application
@ -211,10 +210,12 @@ public class JarCommand extends OptionParsingCommand { @@ -211,10 +210,12 @@ public class JarCommand extends OptionParsingCommand {
private void addCliClasses(JarWriter writer) throws IOException {
addClass(writer, PackagedSpringApplicationLauncher.class);
Resource[] resources = new PathMatchingResourcePatternResolver().getResources("org/springframework/boot/groovy/**");
Resource[] resources = new PathMatchingResourcePatternResolver()
.getResources("org/springframework/boot/groovy/**");
for (Resource resource : resources) {
String url = resource.getURL().toString();
addResource(writer, resource, url.substring(url.indexOf("org/springframework/boot/groovy/")));
addResource(writer, resource,
url.substring(url.indexOf("org/springframework/boot/groovy/")));
}
}
@ -224,7 +225,8 @@ public class JarCommand extends OptionParsingCommand { @@ -224,7 +225,8 @@ public class JarCommand extends OptionParsingCommand {
writer.writeEntry(name, stream);
}
private void addResource(JarWriter writer, Resource resource, String name) throws IOException {
private void addResource(JarWriter writer, Resource resource, String name)
throws IOException {
InputStream stream = resource.getInputStream();
writer.writeEntry(name, stream);
}

Loading…
Cancel
Save