Remove @Override annotation for Java5 compatibility

This commit is contained in:
Taro L. Saito 2011-06-24 13:07:25 +09:00
parent c884620c8f
commit 2097c32314

View File

@ -27,14 +27,18 @@ package org.xerial.snappy;
import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleActivator;
import org.osgi.framework.BundleContext; import org.osgi.framework.BundleContext;
/**
* OSGi bundle entry point
*
* @author leo
*
*/
public class SnappyBundleActivator implements BundleActivator public class SnappyBundleActivator implements BundleActivator
{ {
@Override
public void start(BundleContext context) throws Exception { public void start(BundleContext context) throws Exception {
} }
@Override
public void stop(BundleContext context) throws Exception { public void stop(BundleContext context) throws Exception {
} }