This commit is contained in:
Gary Gregory 2024-01-15 09:25:22 -05:00
parent dbb8a25e98
commit 7c9793acc3
2 changed files with 3 additions and 3 deletions

View File

@ -322,7 +322,7 @@ public class ReferenceIdentityMapTest<K, V> extends AbstractIterableMapTest<K, V
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
}

View File

@ -252,7 +252,7 @@ public class ReferenceMapTest<K, V> extends AbstractIterableMapTest<K, V> {
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
}
@ -286,7 +286,7 @@ public class ReferenceMapTest<K, V> extends AbstractIterableMapTest<K, V> {
// create garbage:
@SuppressWarnings("unused")
final byte[] b = new byte[bytz];
bytz = bytz * 2;
bytz *= 2;
}
assertFalse(expiredValues.isEmpty(), "Value should be stored");
}