Commit f01bb8e1 authored by Andy Wilkinson's avatar Andy Wilkinson

Polish

parent c27d678b
...@@ -138,8 +138,8 @@ final class ChangeableUrls implements Iterable<URL> { ...@@ -138,8 +138,8 @@ final class ChangeableUrls implements Iterable<URL> {
return Collections.emptyList(); return Collections.emptyList();
} }
String[] entries = StringUtils.delimitedListToStringArray(classPath, " "); String[] entries = StringUtils.delimitedListToStringArray(classPath, " ");
List<URL> urls = new ArrayList<>(entries.length); List<URL> urls = new ArrayList<URL>(entries.length);
List<URL> nonExistentEntries = new ArrayList<>(); List<URL> nonExistentEntries = new ArrayList<URL>();
for (String entry : entries) { for (String entry : entries) {
try { try {
URL referenced = new URL(jarUrl, entry); URL referenced = new URL(jarUrl, entry);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment