package org.simantics.lz4.bundle; import net.jpountz.util.Native; import org.osgi.framework.BundleActivator; import org.osgi.framework.BundleContext; public class Activator implements BundleActivator { public static final String PLUGIN_ID = "org.simantics.lz4"; @Override public void start(BundleContext context) throws Exception { Native.load(); } @Override public void stop(BundleContext context) throws Exception { } }