blob: ddab617c2f0b98c9f7cd8edb6ec0689753d47ded [file] [log] [blame]
package org.eclipse.equinox.internal.p2.reconciler.dropins;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
public class Application implements IApplication {
public Object start(IApplicationContext context) throws Exception {
return null;
}
public void stop() {
//Nothing to do
}
}