mirror of https://github.com/apache/jclouds.git
[trivial] demote Boolean to primitive
This commit is contained in:
parent
d5fd35b45a
commit
0d310f3643
|
@ -171,7 +171,7 @@ public class AtmosClientLiveTest extends BaseBlobStoreIntegrationTest {
|
|||
assertEventuallyObjectMatches("object", "here is my data?", "meta-value?");
|
||||
|
||||
// loop to gather metrics
|
||||
for (boolean stream : new Boolean[] { true, false }) {
|
||||
for (boolean stream : new boolean[] { true, false }) {
|
||||
for (int i = 0; i < 10; i++) {
|
||||
System.err.printf("upload/delete/create attempt %d type %s%n", i + 1, stream ? "stream" : "string");
|
||||
// try updating
|
||||
|
|
Loading…
Reference in New Issue