Skip to content

Commit

Permalink
Use *=
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 15, 2024
1 parent dbb8a25 commit 7c9793a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public void testPurgeValues() throws Exception {
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public void testPurgeValues() throws Exception {
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
}

Expand Down Expand Up @@ -286,7 +286,7 @@ protected ReferenceEntry<Integer, Integer> createEntry(final HashEntry<Integer,
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
assertFalse(expiredValues.isEmpty(), "Value should be stored");
}
Expand Down

0 comments on commit 7c9793a

Please sign in to comment.