From 77f6b4c983e5e7147ce089ebda0c7871edb3afaf Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Wed, 8 Jun 2016 20:13:37 -0700 Subject: [PATCH] Formatting --- .../springframework/boot/loader/ExecutableArchiveLauncher.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java index 38edb926a6..0a6a1c83f4 100644 --- a/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java +++ b/spring-boot-tools/spring-boot-loader/src/main/java/org/springframework/boot/loader/ExecutableArchiveLauncher.java @@ -70,10 +70,12 @@ public abstract class ExecutableArchiveLauncher extends Launcher { protected List getClassPathArchives() throws Exception { List archives = new ArrayList( this.archive.getNestedArchives(new EntryFilter() { + @Override public boolean matches(Entry entry) { return isNestedArchive(entry); } + })); postProcessClassPathArchives(archives); return archives;