mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-05-02 19:30:23 +01:00
Use addAll instead of manual array to collection copy
Closes gh-7539
This commit is contained in:
committed by
Stephane Nicoll
parent
ef6130e25a
commit
0a1009bc42
Regular → Executable
+2
-3
@@ -20,6 +20,7 @@ import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URL;
|
||||
import java.net.URLClassLoader;
|
||||
import java.util.Collections;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.Map.Entry;
|
||||
import java.util.Set;
|
||||
@@ -141,9 +142,7 @@ public class RestartServer {
|
||||
ClassLoader classLoader = this.classLoader;
|
||||
while (classLoader != null) {
|
||||
if (classLoader instanceof URLClassLoader) {
|
||||
for (URL url : ((URLClassLoader) classLoader).getURLs()) {
|
||||
urls.add(url);
|
||||
}
|
||||
Collections.addAll(urls, ((URLClassLoader) classLoader).getURLs());
|
||||
}
|
||||
classLoader = classLoader.getParent();
|
||||
}
|
||||
|
||||
Regular → Executable
+1
-3
@@ -183,9 +183,7 @@ public class ConfigurationWarningsApplicationContextInitializer
|
||||
|
||||
private void addPackages(Set<String> packages, String[] values) {
|
||||
if (values != null) {
|
||||
for (String value : values) {
|
||||
packages.add(value);
|
||||
}
|
||||
Collections.addAll(packages, values);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user