-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Eclipse 2019-03, 2019-06, 2019-09 and 2019-12 compatibility
- Loading branch information
Showing
1 changed file
with
4 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2019 Red Hat Inc. and others. | ||
* Copyright (c) 2019-2022 Red Hat Inc. 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 | ||
|
@@ -9,18 +9,20 @@ | |
* | ||
* Contributors: | ||
* Alexander Kurtakov (Red Hat Inc.) - Initial implementation | ||
* Pierre-Yves B. ([email protected]) - Initial implementation | ||
*******************************************************************************/ | ||
package io.github.pyvesb.eclipse_solargraph.launch; | ||
|
||
import org.eclipse.debug.ui.AbstractLaunchConfigurationTabGroup; | ||
import org.eclipse.debug.ui.CommonTab; | ||
import org.eclipse.debug.ui.ILaunchConfigurationDialog; | ||
import org.eclipse.debug.ui.ILaunchConfigurationTab; | ||
|
||
public class RubyLaunchTabGroup extends AbstractLaunchConfigurationTabGroup { | ||
|
||
@Override | ||
public void createTabs(ILaunchConfigurationDialog dialog, String mode) { | ||
setTabs(new RubyLaunchTab(), new CommonTab()); | ||
setTabs(new ILaunchConfigurationTab[] { new RubyLaunchTab(), new CommonTab() }); | ||
} | ||
|
||
} |