Skip to content

Commit 78fecea

Browse files
committed
Fixed styles
1 parent 6a94ef7 commit 78fecea

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/ozone/TestDataUtil.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ public static Map<String, OmKeyInfo> createKeys(MiniOzoneCluster cluster, int nu
219219
OzoneBucket bucket = createVolumeAndBucket(client);
220220
for (int i = 0; i < numOfKeys; i++) {
221221
String keyName = RandomStringUtils.randomAlphabetic(5) + i;
222-
createKey(bucket, keyName,ReplicationConfig
222+
createKey(bucket, keyName, ReplicationConfig
223223
.fromTypeAndFactor(ReplicationType.RATIS, ReplicationFactor.ONE),
224224
RandomStringUtils.randomAlphabetic(5).getBytes(UTF_8));
225225
keyLocationMap.put(keyName, lookupOmKeyInfo(cluster, bucket, keyName));

hadoop-ozone/integration-test/src/test/java/org/apache/hadoop/ozone/om/TestOMDbCheckpointServlet.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -680,8 +680,8 @@ private void prepSnapshotData() throws Exception {
680680

681681
// Create dummy keys for snapshotting.
682682
TestDataUtil.createKey(bucket, UUID.randomUUID().toString(), ReplicationConfig
683-
.fromTypeAndFactor(ReplicationType.RATIS, ReplicationFactor.ONE)
684-
, "content".getBytes(StandardCharsets.UTF_8));
683+
.fromTypeAndFactor(ReplicationType.RATIS, ReplicationFactor.ONE),
684+
"content".getBytes(StandardCharsets.UTF_8));
685685
TestDataUtil.createKey(bucket, UUID.randomUUID().toString(), ReplicationConfig
686686
.fromTypeAndFactor(ReplicationType.RATIS, ReplicationFactor.ONE),
687687
"content".getBytes(StandardCharsets.UTF_8));

0 commit comments

Comments
 (0)