mirror of
https://github.com/apache/commons-collections.git
synced 2025-02-13 05:26:34 +00:00
Use *=
This commit is contained in:
parent
dbb8a25e98
commit
7c9793acc3
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user