Skip to content

Commit

Permalink
Fix Eclipse 2019-03, 2019-06, 2019-09 and 2019-12 compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
PyvesB committed Feb 20, 2022
1 parent d6ff0eb commit ebc5b94
Showing 1 changed file with 4 additions and 2 deletions.
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
Expand All @@ -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() });
}

}

0 comments on commit ebc5b94

Please sign in to comment.