Skip to content

Commit 4d0eaac

Browse files
authored
Switch from javax to jakarta (#912)
1 parent e50f81b commit 4d0eaac

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

launchbar/org.eclipse.launchbar.ui.controls/META-INF/MANIFEST.MF

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Manifest-Version: 1.0
22
Bundle-ManifestVersion: 2
33
Bundle-Name: %pluginName
44
Bundle-SymbolicName: org.eclipse.launchbar.ui.controls;singleton:=true
5-
Bundle-Version: 1.2.400.qualifier
5+
Bundle-Version: 1.2.500.qualifier
66
Bundle-Activator: org.eclipse.launchbar.ui.controls.internal.Activator
77
Bundle-Vendor: %providerName
88
Require-Bundle: org.eclipse.core.runtime,
@@ -15,8 +15,8 @@ Require-Bundle: org.eclipse.core.runtime,
1515
org.eclipse.debug.ui;bundle-version="3.11.200",
1616
org.eclipse.launchbar.core;bundle-version="2.0.0",
1717
org.eclipse.launchbar.ui;bundle-version="2.0.0"
18-
Import-Package: javax.annotation,
19-
javax.inject,
18+
Import-Package: jakarta.annotation,
19+
jakarta.inject,
2020
org.osgi.service.event;version="1.4.1"
2121
Bundle-RequiredExecutionEnvironment: JavaSE-17
2222
Bundle-ActivationPolicy: lazy

launchbar/org.eclipse.launchbar.ui.controls/src/org/eclipse/launchbar/ui/controls/internal/LaunchBarControl.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515
*******************************************************************************/
1616
package org.eclipse.launchbar.ui.controls.internal;
1717

18-
import javax.annotation.PostConstruct;
19-
import javax.annotation.PreDestroy;
20-
2118
import org.eclipse.core.commands.Command;
2219
import org.eclipse.core.commands.ExecutionEvent;
2320
import org.eclipse.core.runtime.CoreException;
@@ -44,6 +41,9 @@
4441
import org.eclipse.ui.commands.ICommandService;
4542
import org.eclipse.ui.handlers.IHandlerService;
4643

44+
import jakarta.annotation.PostConstruct;
45+
import jakarta.annotation.PreDestroy;
46+
4747
public class LaunchBarControl implements ILaunchBarListener {
4848
public static final String ID = "org.eclipse.launchbar"; //$NON-NLS-1$
4949
public static final String CLASS_URI = "bundleclass://" + Activator.PLUGIN_ID + "/" //$NON-NLS-1$ //$NON-NLS-2$

launchbar/org.eclipse.launchbar.ui.controls/src/org/eclipse/launchbar/ui/controls/internal/LaunchBarInjector.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*******************************************************************************/
1616
package org.eclipse.launchbar.ui.controls.internal;
1717

18-
import javax.inject.Inject;
19-
2018
import org.eclipse.e4.core.di.annotations.Execute;
2119
import org.eclipse.e4.core.services.events.IEventBroker;
2220
import org.eclipse.e4.ui.model.application.MApplication;
@@ -31,6 +29,8 @@
3129
import org.eclipse.jface.preference.IPreferenceStore;
3230
import org.eclipse.swt.widgets.Widget;
3331

32+
import jakarta.inject.Inject;
33+
3434
public class LaunchBarInjector {
3535

3636
@Inject

0 commit comments

Comments
 (0)