Skip to content

Commit

Permalink
Mark things as protected
Browse files Browse the repository at this point in the history
  • Loading branch information
dakrone committed Nov 3, 2023
1 parent 29e0646 commit 63516a4
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -857,9 +857,9 @@ private static Optional<Diagnosis.Definition> checkNotEnoughNodesInDataTier(
}

public class ShardAllocationStatus {
final ShardAllocationCounts primaries = new ShardAllocationCounts();
final ShardAllocationCounts replicas = new ShardAllocationCounts();
final Metadata clusterMetadata;
protected final ShardAllocationCounts primaries = new ShardAllocationCounts();
protected final ShardAllocationCounts replicas = new ShardAllocationCounts();
protected final Metadata clusterMetadata;

public ShardAllocationStatus(Metadata clusterMetadata) {
this.clusterMetadata = clusterMetadata;
Expand Down

0 comments on commit 63516a4

Please sign in to comment.