Skip to content

Commit

Permalink
More package fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Alfonsi <[email protected]>
  • Loading branch information
Peter Alfonsi committed Nov 5, 2024
1 parent f85b719 commit 165850e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ private static List<String> getDimensionNamesWithTier(List<String> dimensionName
/**
* Add tierValue to the end of a copy of the initial dimension values, so they can appropriately be used in this stats holder.
*/
public List<String> getDimensionsWithTierValue(List<String> initialDimensions, String tierValue) {
List<String> getDimensionsWithTierValue(List<String> initialDimensions, String tierValue) {
List<String> result = new ArrayList<>(initialDimensions);
result.add(tierValue);
return result;
Expand Down Expand Up @@ -166,7 +166,7 @@ public void decrementItems(List<String> dimensionValues) {
super.decrementItems(dimensionValues);
}

public void setDiskCacheEnabled(boolean diskCacheEnabled) {
void setDiskCacheEnabled(boolean diskCacheEnabled) {
this.diskCacheEnabled = diskCacheEnabled;
}

Expand Down

0 comments on commit 165850e

Please sign in to comment.