]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.lz4/src/org/simantics/lz4/bundle/Activator.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.lz4 / src / org / simantics / lz4 / bundle / Activator.java
1 package org.simantics.lz4.bundle;
2
3 import net.jpountz.util.Native;
4
5 import org.osgi.framework.BundleActivator;
6 import org.osgi.framework.BundleContext;
7
8 public class Activator implements BundleActivator {
9
10     public static final String PLUGIN_ID = "org.simantics.lz4";
11     
12     @Override
13     public void start(BundleContext context) throws Exception {
14         Native.load();
15     }
16
17     @Override
18     public void stop(BundleContext context) throws Exception {
19         
20     }
21
22 }