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…
Reference in New Issue