Skip to content

Commit

Permalink
Fix typo super->sb in method toString() of RemoteStoreNodeAttribute (o…
Browse files Browse the repository at this point in the history
…pensearch-project#15362)

* Removed unused StringBuilder

Signed-off-by: Dmitry Kryukov <dk2k@ya.ru>

* Restored lines, fixed typo super -> sb

Signed-off-by: Dmitry Kryukov <dk2k@ya.ru>

* Updated CHANGELOG.md

Signed-off-by: Dmitry Kryukov <dk2k@ya.ru>

---------

Signed-off-by: Dmitry Kryukov <dk2k@ya.ru>
  • Loading branch information
dk2k authored Oct 21, 2024
1 parent 0f7d572 commit 0419e5d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
- [Workload Management] Make query groups persistent across process restarts [#16370](https://github.com/opensearch-project/OpenSearch/pull/16370)
- Fix inefficient Stream API call chains ending with count() ([#15386](https://github.com/opensearch-project/OpenSearch/pull/15386))
- Fix array hashCode calculation in ResyncReplicationRequest ([#16378](https://github.com/opensearch-project/OpenSearch/pull/16378))
- Fix typo super->sb in method toString() of RemoteStoreNodeAttribute ([#15362](https://github.com/opensearch-project/OpenSearch/pull/15362))

### Security

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,6 @@ public boolean equals(Object o) {
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append('{').append(this.repositoriesMetadata).append('}');
return super.toString();
return sb.toString();
}
}

0 comments on commit 0419e5d

Please sign in to comment.