Skip to content

Commit

Permalink
Fixes #5521 ResourceCollection list NPE
Browse files Browse the repository at this point in the history
Fix from review. remove duplicate line.
  • Loading branch information
gregw committed Oct 28, 2020
1 parent 6c7a63b commit 2446ca3
Showing 1 changed file with 0 additions and 1 deletion.
Expand Up @@ -440,7 +440,6 @@ public String[] list()
String[] list = r.list();
if (list != null)
Collections.addAll(set, list);
Collections.addAll(set, r.list());
}
String[] result = set.toArray(new String[0]);
Arrays.sort(result);
Expand Down

0 comments on commit 2446ca3

Please sign in to comment.