[jboss-cvs] JBossAS SVN: r92875 - projects/jboss-osgi/projects/runtime/microcontainer/trunk/src/main/java/org/jboss/osgi/plugins/facade/bundle.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 27 11:51:08 EDT 2009


Author: alesj
Date: 2009-08-27 11:51:08 -0400 (Thu, 27 Aug 2009)
New Revision: 92875

Modified:
   projects/jboss-osgi/projects/runtime/microcontainer/trunk/src/main/java/org/jboss/osgi/plugins/facade/bundle/OSGiSystemState.java
Log:
Fix compiling with 1.5.

Modified: projects/jboss-osgi/projects/runtime/microcontainer/trunk/src/main/java/org/jboss/osgi/plugins/facade/bundle/OSGiSystemState.java
===================================================================
--- projects/jboss-osgi/projects/runtime/microcontainer/trunk/src/main/java/org/jboss/osgi/plugins/facade/bundle/OSGiSystemState.java	2009-08-27 15:44:03 UTC (rev 92874)
+++ projects/jboss-osgi/projects/runtime/microcontainer/trunk/src/main/java/org/jboss/osgi/plugins/facade/bundle/OSGiSystemState.java	2009-08-27 15:51:08 UTC (rev 92875)
@@ -52,13 +52,11 @@
       changeState(Bundle.INSTALLED);
    }
 
-   @Override
    public long getBundleId()
    {
       return 0;
    }
    
-   @Override
    public String getLocation()
    {
       return Constants.SYSTEM_BUNDLE_LOCATION;
@@ -70,7 +68,6 @@
       throw new NotImplementedException();
    }
    
-   @Override
    @SuppressWarnings("unchecked")
    public Enumeration findEntries(String path, String filePattern, boolean recurse)
    {
@@ -78,14 +75,12 @@
       throw new NotImplementedException();
    }
 
-   @Override
    public URL getEntry(String path)
    {
       // [JBOSGI-138] Proper system BundleContext implementation
       throw new NotImplementedException();
    }
 
-   @Override
    @SuppressWarnings("unchecked")
    public Enumeration getEntryPaths(String path)
    {
@@ -93,14 +88,12 @@
       throw new NotImplementedException();
    }
 
-   @Override
    public URL getResource(String name)
    {
       // [JBOSGI-138] Proper system BundleContext implementation
       throw new NotImplementedException();
    }
 
-   @Override
    @SuppressWarnings("unchecked")
    public Enumeration getResources(String name) throws IOException
    {
@@ -108,14 +101,12 @@
       throw new NotImplementedException();
    }
 
-   @Override
    public void start(int options) throws BundleException
    {
       // [JBOSGI-138] Proper system BundleContext implementation
       throw new NotImplementedException();
    }
 
-   @Override
    public void stop(int options) throws BundleException
    {
       final OSGiBundleManager bundleManager = getBundleManager();




More information about the jboss-cvs-commits mailing list