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 2011/09/30 21:33:10 UTC

svn commit: r1177796 - in /felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework: BundleWiringImpl.java ResourceNotFoundException.java resolver/ResourceNotFoundException.java

Author: rickhall
Date: Fri Sep 30 19:33:10 2011
New Revision: 1177796

URL: http://svn.apache.org/viewvc?rev=1177796&view=rev
Log:
Move ResourceNotFoundException into framework package, since it is
not used by the resolver.

Added:
    felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/ResourceNotFoundException.java
      - copied, changed from r1177794, felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/resolver/ResourceNotFoundException.java
Removed:
    felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/resolver/ResourceNotFoundException.java
Modified:
    felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/BundleWiringImpl.java

Modified: felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/BundleWiringImpl.java
URL: http://svn.apache.org/viewvc/felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/BundleWiringImpl.java?rev=1177796&r1=1177795&r2=1177796&view=diff
==============================================================================
--- felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/BundleWiringImpl.java (original)
+++ felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/BundleWiringImpl.java Fri Sep 30 19:33:10 2011
@@ -45,7 +45,6 @@ import org.apache.felix.framework.cache.
 import org.apache.felix.framework.cache.JarContent;
 import org.apache.felix.framework.capabilityset.SimpleFilter;
 import org.apache.felix.framework.resolver.ResolveException;
-import org.apache.felix.framework.resolver.ResourceNotFoundException;
 import org.apache.felix.framework.util.CompoundEnumeration;
 import org.apache.felix.framework.util.FelixConstants;
 import org.apache.felix.framework.util.SecurityManagerEx;

Copied: felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/ResourceNotFoundException.java (from r1177794, felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/resolver/ResourceNotFoundException.java)
URL: http://svn.apache.org/viewvc/felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/ResourceNotFoundException.java?p2=felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/ResourceNotFoundException.java&p1=felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/resolver/ResourceNotFoundException.java&r1=1177794&r2=1177796&rev=1177796&view=diff
==============================================================================
--- felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/resolver/ResourceNotFoundException.java (original)
+++ felix/sandbox/rickhall/framework-r5/src/main/java/org/apache/felix/framework/ResourceNotFoundException.java Fri Sep 30 19:33:10 2011
@@ -16,7 +16,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
-package org.apache.felix.framework.resolver;
+package org.apache.felix.framework;
 
 public class ResourceNotFoundException extends Exception
 {