From f2a1ddd87f8b6a6273abeda6a18c2c4e4f54612f Mon Sep 17 00:00:00 2001 From: Himshikha Gupta Date: Tue, 11 Jun 2024 12:48:44 +0530 Subject: [PATCH] spotless fix Signed-off-by: Himshikha Gupta --- .../org/opensearch/index/remote/RemoteStorePathStrategy.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/server/src/main/java/org/opensearch/index/remote/RemoteStorePathStrategy.java b/server/src/main/java/org/opensearch/index/remote/RemoteStorePathStrategy.java index 258d74d249f8d..05357aaf6ec72 100644 --- a/server/src/main/java/org/opensearch/index/remote/RemoteStorePathStrategy.java +++ b/server/src/main/java/org/opensearch/index/remote/RemoteStorePathStrategy.java @@ -76,7 +76,6 @@ public BlobPath generatePath(PathInput pathInput) { return type.path(pathInput, hashAlgorithm); } - /** * Wrapper class for the path input required to generate path for remote store uploads. This input is composed of * basePath and indexUUID. @@ -89,7 +88,7 @@ public static class BasePathInput { private final BlobPath basePath; private final String indexUUID; - //Adding for BWC + // Adding for BWC public BasePathInput(BlobPath basePath, String indexUUID) { this.basePath = basePath; this.indexUUID = indexUUID; @@ -167,7 +166,7 @@ public static class PathInput extends BasePathInput { private final DataCategory dataCategory; private final DataType dataType; - //Adding for BWC + // Adding for BWC public PathInput(BlobPath basePath, String indexUUID, String shardId, DataCategory dataCategory, DataType dataType) { super(basePath, indexUUID); this.shardId = shardId;