Formatting

This commit is contained in:
Phillip Webb
2016-06-08 20:13:37 -07:00
parent c66da65e23
commit 77f6b4c983

View File

@@ -70,10 +70,12 @@ public abstract class ExecutableArchiveLauncher extends Launcher {
protected List<Archive> getClassPathArchives() throws Exception {
List<Archive> archives = new ArrayList<Archive>(
this.archive.getNestedArchives(new EntryFilter() {
@Override
public boolean matches(Entry entry) {
return isNestedArchive(entry);
}
}));
postProcessClassPathArchives(archives);
return archives;