Skip to content

Commit

Permalink
Internal Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 514648987
  • Loading branch information
sjudd authored and glide-copybara-robot committed Mar 7, 2023
1 parent 69e1bda commit 414b970
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,8 @@ public void testAllocationOrderSplitsEvenlyBetweenEqualSizesWithEqualWeights() {
.build();
PreFillQueue allocationOrder = bitmapPreFiller.generateAllocationOrder(smallWidth, smallHeight);

int numSmallWidth = 0, numSmallHeight = 0;
int numSmallWidth = 0;
int numSmallHeight = 0;
while (!allocationOrder.isEmpty()) {
PreFillType current = allocationOrder.remove();
if (smallWidth.equals(current)) {
Expand All @@ -211,7 +212,8 @@ public void testAllocationOrderSplitsByteSizeEvenlyBetweenUnEqualSizesWithEqualW
.build();
PreFillQueue allocationOrder = bitmapPreFiller.generateAllocationOrder(smallWidth, normal);

int numSmallWidth = 0, numNormal = 0;
int numSmallWidth = 0;
int numNormal = 0;
while (!allocationOrder.isEmpty()) {
PreFillType current = allocationOrder.remove();
if (smallWidth.equals(current)) {
Expand Down Expand Up @@ -239,7 +241,8 @@ public void testAllocationOrderSplitsByteSizeUnevenlyBetweenEqualSizesWithUnequa
.build();
PreFillQueue allocationOrder = bitmapPreFiller.generateAllocationOrder(doubleWeight, normal);

int numDoubleWeight = 0, numNormal = 0;
int numDoubleWeight = 0;
int numNormal = 0;
while (!allocationOrder.isEmpty()) {
PreFillType current = allocationOrder.remove();
if (doubleWeight.equals(current)) {
Expand Down

0 comments on commit 414b970

Please sign in to comment.