Skip to content

Commit

Permalink
Return empty collection instead of null
Browse files Browse the repository at this point in the history
- fixes mistake from recent commit

Signed-off-by: David Matějček <david.matejcek@omnifish.ee>
  • Loading branch information
dmatej committed Sep 2, 2022
1 parent d6834d3 commit ab51861
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private static Set<String> getInstalledLibraries(String archiveURI, Manifest man
String extensionList = null;
try {
if (manifest == null) {
return null;
return libraries;
}
extensionList = manifest.getMainAttributes().getValue(Attributes.Name.EXTENSION_LIST);
if (deplLogger.isLoggable(FINE)) {
Expand Down

0 comments on commit ab51861

Please sign in to comment.