Skip to content

Commit e7f36b0

Browse files
committed
Fix compile issue
Signed-off-by: Peter Nied <petern@amazon.com>
1 parent 07bcfe0 commit e7f36b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/src/main/java/org/opensearch/action/admin/indices/view/ListViewNamesAction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public List<String> getViewNames() {
8787
public boolean equals(Object o) {
8888
if (this == o) return true;
8989
if (o == null || getClass() != o.getClass()) return false;
90-
final Request that = (Request) o;
90+
final Response that = (Response) o;
9191
return views.equals(that.views);
9292
}
9393

0 commit comments

Comments
 (0)