Skip to content

Commit 356b64a

Browse files
fix checkstyle
1 parent ea57419 commit 356b64a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

hadoop-tools/hadoop-azure/src/main/java/org/apache/hadoop/fs/azurebfs/services/AbfsBlobClient.java

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -683,10 +683,17 @@ HTTP_METHOD_PUT, createRequestUrl(path, EMPTY_STRING),
683683
* @param tracingContext the tracing context.
684684
* @throws AzureBlobFileSystemException if the creation of markers fails.
685685
*/
686-
private void createParentMarkersIfNeeded(String path, boolean overwrite, AzureBlobFileSystemStore.Permissions permissions, boolean isAppendBlob, String eTag, ContextEncryptionAdapter contextEncryptionAdapter, TracingContext tracingContext) throws AzureBlobFileSystemException {
686+
private void createParentMarkersIfNeeded(String path,
687+
boolean overwrite,
688+
AzureBlobFileSystemStore.Permissions permissions,
689+
boolean isAppendBlob,
690+
String eTag,
691+
ContextEncryptionAdapter contextEncryptionAdapter,
692+
TracingContext tracingContext) throws AzureBlobFileSystemException {
687693
Path parentPath = new Path(path).getParent();
688694
if (parentPath != null && !parentPath.isRoot()) {
689-
createMarkers(parentPath, overwrite, permissions, isAppendBlob, eTag, contextEncryptionAdapter, tracingContext);
695+
createMarkers(parentPath, overwrite, permissions, isAppendBlob, eTag,
696+
contextEncryptionAdapter, tracingContext);
690697
}
691698
}
692699

hadoop-tools/hadoop-azure/src/test/java/org/apache/hadoop/fs/azurebfs/ITestAzureBlobFileSystemCreate.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
import org.apache.hadoop.fs.azurebfs.services.AbfsBlobClient;
5252
import org.apache.hadoop.fs.azurebfs.services.AbfsClient;
5353
import org.apache.hadoop.fs.azurebfs.services.AbfsClientHandler;
54-
import org.apache.hadoop.fs.azurebfs.services.AbfsDfsClient;
5554
import org.apache.hadoop.fs.azurebfs.services.AbfsHttpOperation;
5655
import org.apache.hadoop.fs.azurebfs.services.AbfsRestOperation;
5756
import org.apache.hadoop.fs.azurebfs.services.ITestAbfsClient;

0 commit comments

Comments
 (0)