Closes gh-14202
This commit is contained in:
Johnny Lim
2018-08-26 05:03:02 +09:00
committed by Stephane Nicoll
parent 2a016a47e2
commit fe3fe0fa63
4 changed files with 5 additions and 13 deletions

View File

@@ -213,7 +213,7 @@ public class RestartClassLoaderTests {
private <T> List<T> toList(Enumeration<T> enumeration) {
return (enumeration != null) ? Collections.list(enumeration)
: Collections.<T>emptyList();
: Collections.emptyList();
}
}