Skip to content

Commit

Permalink
Perform clean code of bundles/org.eclipse.equinox.app
Browse files Browse the repository at this point in the history
  • Loading branch information
eclipse-equinox-bot authored and laeubi committed Jan 30, 2025
1 parent 7def4c5 commit 7f31210
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class ApplicationAdminPermission extends Permission {
*/
public static final String LOCK_ACTION = "lock";

private ApplicationDescriptor applicationDescriptor;
private final ApplicationDescriptor applicationDescriptor;

/**
* Constructs an ApplicationAdminPermission. The {@code filter}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import org.eclipse.osgi.framework.log.FrameworkLogEntry;

public class AnyThreadAppLauncher implements Runnable {
private EclipseAppHandle appHandle;
private final EclipseAppHandle appHandle;

private AnyThreadAppLauncher(EclipseAppHandle appHandle) {
this.appHandle = appHandle;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ public class EclipseScheduledApplication implements ScheduledApplication, EventH
+ ApplicationDescriptor.APPLICATION_PID + "="; //$NON-NLS-1$
private static final String FILTER_POSTFIX = "))"; //$NON-NLS-1$

private boolean recurring;
private String topic;
private String eventFilter;
private Map<String, Object> args;
private String appPid;
private String id;
private final boolean recurring;
private final String topic;
private final String eventFilter;
private final Map<String, Object> args;
private final String appPid;
private final String id;
private ServiceRegistration sr;
private ServiceTracker appTracker;
private final ServiceTracker appTracker;
private boolean removed = false;

EclipseScheduledApplication(BundleContext context, String id, String appPid, Map<String, Object> args, String topic,
Expand Down

0 comments on commit 7f31210

Please sign in to comment.