Author: [email protected]
Date: Wed Feb  8 10:25:50 2012
New Revision: 2073

Log:
FELIX-528 after discussing them with the team, removed the FIXMEs from the code.

Modified:
   
trunk/amdatu-core/tenant-adapter/src/main/java/org/amdatu/tenant/adapter/TenantAwareBundleContext.java

Modified: 
trunk/amdatu-core/tenant-adapter/src/main/java/org/amdatu/tenant/adapter/TenantAwareBundleContext.java
==============================================================================
--- 
trunk/amdatu-core/tenant-adapter/src/main/java/org/amdatu/tenant/adapter/TenantAwareBundleContext.java
      (original)
+++ 
trunk/amdatu-core/tenant-adapter/src/main/java/org/amdatu/tenant/adapter/TenantAwareBundleContext.java
      Wed Feb  8 10:25:50 2012
@@ -356,7 +356,6 @@
      */
     public Bundle installBundle(String location) throws BundleException {
         try {
-            // FIXME This does not do what we want... do we even want to allow 
it?
             return m_parentBundleContext.installBundle(location,
                 new MultiTenantBundleInputStream((new 
URL(location)).openStream()));
         }
@@ -370,7 +369,6 @@
      * @see org.osgi.framework.BundleContext#installBundle(java.lang.String, 
java.io.InputStream)
      */
     public Bundle installBundle(String location, InputStream input) throws 
BundleException {
-        // FIXME This does not do what we want... do we even want to allow it?
         return m_parentBundleContext.installBundle(location, new 
MultiTenantBundleInputStream(input));
     }
 
@@ -505,7 +503,6 @@
      * @return
      */
     private TenantAwareBundleContext createScopedBundleContext(BundleContext 
bundleContext) {
-        // FIXME Do we even want to (always) provide access to foreign 
BundleContext?
         return new TenantAwareBundleContext(bundleContext, m_identifier, 
m_filter);
     }
 }
_______________________________________________
Amdatu-commits mailing list
[email protected]
http://lists.amdatu.org/mailman/listinfo/amdatu-commits

Reply via email to