Skip to content

Commit

Permalink
added 'private' to a couple fields missing it
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinrr888 committed Jan 16, 2025
1 parent f9908ed commit 8155118
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@
@AutoService(KeywordExecutable.class)
public class Admin implements KeywordExecutable {
private static final Logger log = LoggerFactory.getLogger(Admin.class);
final CountDownLatch lockAcquiredLatch = new CountDownLatch(1);
private final CountDownLatch lockAcquiredLatch = new CountDownLatch(1);

static class AdminOpts extends ServerUtilOpts {
@Parameter(names = {"-f", "--force"},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
import com.google.common.base.Preconditions;

public class ExternalCompaction_1_IT extends SharedMiniClusterBase {
static ServiceLock testLock;
private static ServiceLock testLock;

public static class ExternalCompaction1Config implements MiniClusterConfigurationCallback {
@Override
Expand Down

0 comments on commit 8155118

Please sign in to comment.