You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by ri...@apache.org on 2008/09/12 22:59:22 UTC

svn commit: r694805 - /felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java

Author: rickhall
Date: Fri Sep 12 13:59:22 2008
New Revision: 694805

URL: http://svn.apache.org/viewvc?rev=694805&view=rev
Log:
Added a comment to remind us to clean up when fragments are done.

Modified:
    felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java

Modified: felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java
URL: http://svn.apache.org/viewvc/felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java?rev=694805&r1=694804&r2=694805&view=diff
==============================================================================
--- felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java (original)
+++ felix/trunk/framework/src/main/java/org/apache/felix/framework/util/manifestparser/ManifestParser.java Fri Sep 12 13:59:22 2008
@@ -248,6 +248,9 @@
     **/
     private void validateFragment(Map headerMap) throws BundleException
     {
+        // TODO: FRAGMENTS - We should delete this method and the related
+        //       fragment constants in FelixConstants when fragments are
+        //       fully implemented.
         String fragmentHost = (String) headerMap.get(Constants.FRAGMENT_HOST);
         if (fragmentHost != null)
         {