Skip to content

Commit

Permalink
Perform clean code of bundles/org.eclipse.equinox.device
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 fbdc0f0 commit 59b8eea
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -417,9 +417,9 @@ public String toString() {
}

public class DriverUpdate implements Runnable, ServiceListener, BundleListener {
private Activator manager_;
private Bundle bundle;
private BundleContext contxt;
private final Activator manager_;
private final Bundle bundle;
private final BundleContext contxt;

/** if false the thread must terminate */
private volatile boolean running;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
*/
public class Match implements org.osgi.service.device.Match {

private ServiceReference driver;
private int matchValue;
private final ServiceReference driver;
private final int matchValue;

Match(ServiceReference driver, int matchValue) {
this.driver = driver;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
public class SecureAction {
// make sure we use the correct controlContext;
private AccessControlContext controlContext;
private final AccessControlContext controlContext;

/**
* Constructs a new SecureAction object. The constructed SecureAction object
Expand Down

0 comments on commit 59b8eea

Please sign in to comment.