You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by hi...@apache.org on 2013/12/26 22:22:18 UTC

svn commit: r1553590 - /ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java

Author: hibou
Date: Thu Dec 26 21:22:17 2013
New Revision: 1553590

URL: http://svn.apache.org/r1553590
Log:
Initialize with the default environment profile provider

Modified:
    ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java

Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java?rev=1553590&r1=1553589&r2=1553590&view=diff
==============================================================================
--- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java (original)
+++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/core/OSGiManifestParser.java Thu Dec 26 21:22:17 2013
@@ -46,7 +46,8 @@ public class OSGiManifestParser implemen
         return INSTANCE;
     }
 
-    private ExecutionEnvironmentProfileProvider profileProvider;
+    private ExecutionEnvironmentProfileProvider profileProvider = ExecutionEnvironmentProfileProvider
+            .getInstance();
 
     public void add(ExecutionEnvironmentProfileProvider pp) {
         this.profileProvider = pp;