blob: 84ccba41e8a33d039e8d05b51fddaba70e98c301 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2013, 2014 Tasktop Technologies and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* https://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Tasktop Technologies - initial API and implementation
*******************************************************************************/
package org.eclipse.mylyn.tests.util;
import org.eclipse.mylyn.internal.tasks.core.util.ContributorBlackList;
import org.eclipse.mylyn.internal.tasks.ui.util.TasksUiExtensionReader;
/**
* @author Steffen Pingel
*/
public class TasksUiTestUtil {
/**
* Ensures that connector UI extensions are registered (see bug 400370).
*/
public static void ensureTasksUiInitialization() {
TasksUiExtensionReader.initWorkbenchUiExtensions(new ContributorBlackList());
}
}