Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,6 @@ private void notifyMissingTools()

private void downloadAndLaunchEim()
{
closeWelcomePage();
Job downloadJob = new Job("Download and Launch EIM")
{

Expand All @@ -284,25 +283,6 @@ protected IStatus run(IProgressMonitor monitor)
downloadJob.schedule();
}

private void closeWelcomePage()
{
Display.getDefault().asyncExec(() -> {
IWorkbench workbench = PlatformUI.getWorkbench();
if (workbench != null)
{
IWorkbenchWindow window = workbench.getActiveWorkbenchWindow();
if (window != null)
{
IIntroManager introManager = workbench.getIntroManager();
if (introManager.getIntro() != null)
{
introManager.closeIntro(introManager.getIntro());
}
}
}
});
}

private MessageConsoleStream getConsoleStream(boolean errorStream)
{
IDFConsole idfConsole = new IDFConsole();
Expand Down
Loading