Add an IStartup to the new kernel.core plugin
[deliverable/tracecompass.git] / lttng / org.lttng.scope.lttng.kernel.core / src / org / lttng / scope / lttng / kernel / core / activator / internal / Startup.java
1 /*
2 * Copyright (C) 2017 EfficiOS Inc., Alexandre Montplaisir <alexmonthy@efficios.com>
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 */
9
10 package org.lttng.scope.lttng.kernel.core.activator.internal;
11
12 import org.eclipse.ui.IStartup;
13
14 /**
15 * Plugin startup
16 */
17 public class Startup implements IStartup {
18
19 @Override
20 public void earlyStartup() {
21 // Nothing to do, just load the plugin plz
22 }
23
24 }
This page took 0.031122 seconds and 5 git commands to generate.