Skip to content

Commit

Permalink
adjustments for branch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
ndimiduk committed Dec 13, 2024
1 parent 19643c3 commit 295f539
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 139 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,10 @@ public boolean equals(Object o) {
if (this == o) {
return true;
}
if (!(o instanceof BulkLoad that)) {
if (!(o instanceof BulkLoad)) {
return false;
}
BulkLoad that = (BulkLoad) o;
return new EqualsBuilder().append(tableName, that.tableName).append(region, that.region)
.append(columnFamily, that.columnFamily).append(hfilePath, that.hfilePath)
.append(rowKey, that.rowKey).isEquals();
Expand Down

This file was deleted.

0 comments on commit 295f539

Please sign in to comment.