Remove @Override annotation for Java5 compatibility
This commit is contained in:
parent
c884620c8f
commit
2097c32314
|
@ -27,14 +27,18 @@ package org.xerial.snappy;
|
|||
import org.osgi.framework.BundleActivator;
|
||||
import org.osgi.framework.BundleContext;
|
||||
|
||||
/**
|
||||
* OSGi bundle entry point
|
||||
*
|
||||
* @author leo
|
||||
*
|
||||
*/
|
||||
public class SnappyBundleActivator implements BundleActivator
|
||||
{
|
||||
@Override
|
||||
public void start(BundleContext context) throws Exception {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public void stop(BundleContext context) throws Exception {
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue