Skip to content

Commit

Permalink
spotless fix
Browse files Browse the repository at this point in the history
Signed-off-by: Himshikha Gupta <[email protected]>
  • Loading branch information
Himshikha Gupta committed Jun 11, 2024
1 parent fc4770c commit f2a1ddd
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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;
Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit f2a1ddd

Please sign in to comment.