commit | cbbf5bf98b96cf814a91cde26efa64bb847e0d99 | [log] [tgz] |
---|---|---|
author | Bob Paulin <bob@apache.org> | Tue Aug 25 03:57:47 2015 +0000 |
committer | Bob Paulin <bob@apache.org> | Tue Aug 25 03:57:47 2015 +0000 |
tree | d284840f3def12e061a10a83198fc3c3d920e569 | |
parent | ce51b475b95b9f64d1fcc60c5dc89f380460844f [diff] |
FELIX-5010 - Bundle-NativeCode: * should function the same as the absence of a Bundle-NativeCode entry. git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@1697537 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java b/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java index 47e80a2..c26db71 100644 --- a/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java +++ b/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java
@@ -613,7 +613,7 @@ List<SimpleFilter> nativeFilterClauseList = new ArrayList<SimpleFilter>(); - if(nativeLibraryClauses != null) + if(nativeLibraryClauses != null && !nativeLibraryClauses.isEmpty()) { for(NativeLibraryClause clause: nativeLibraryClauses) {