Skip to content

Commit

Permalink
Incoporate PR review feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Singh <ssashish@amazon.com>
  • Loading branch information
ashking94 committed Apr 23, 2024
1 parent a58d712 commit a8bf7af
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*
* @opensearch.internal
*/
public class AbstractBlobStoreFormat<T extends ToXContent> {
public class BaseBlobStoreFormat<T extends ToXContent> {

private static final int BUFFER_SIZE = 4096;

Expand All @@ -41,7 +41,7 @@ public class AbstractBlobStoreFormat<T extends ToXContent> {
/**
* @param blobNameFormat format of the blobname in {@link String#format} format
*/
public AbstractBlobStoreFormat(String blobNameFormat, boolean skipHeaderFooter) {
public BaseBlobStoreFormat(String blobNameFormat, boolean skipHeaderFooter) {
this.blobNameFormat = blobNameFormat;
this.skipHeaderFooter = skipHeaderFooter;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
*
* @opensearch.internal
*/
public final class ChecksumBlobStoreFormat<T extends ToXContent> extends AbstractBlobStoreFormat<T> {
public final class ChecksumBlobStoreFormat<T extends ToXContent> extends BaseBlobStoreFormat<T> {

// Serialization parameters to specify correct context for metadata serialization
public static final ToXContent.Params SNAPSHOT_ONLY_FORMAT_PARAMS;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
*
* @opensearch.internal
*/
public class ConfigBlobStoreFormat<T extends ToXContent> extends AbstractBlobStoreFormat<T> {
public class ConfigBlobStoreFormat<T extends ToXContent> extends BaseBlobStoreFormat<T> {

/**
* @param blobNameFormat format of the blobname in {@link String#format} format
Expand Down

0 comments on commit a8bf7af

Please sign in to comment.