Skip to content

Commit b5deadc

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 68280cf commit b5deadc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

server/src/main/java/org/elasticsearch/action/search/SearchContextId.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,9 @@ public String[] getActualIndices() {
148148
public boolean equals(Object o) {
149149
if (o == null || getClass() != o.getClass()) return false;
150150
SearchContextId that = (SearchContextId) o;
151-
return Objects.equals(shards, that.shards) && Objects.equals(aliasFilter,
152-
that.aliasFilter) && Objects.equals(contextIds, that.contextIds);
151+
return Objects.equals(shards, that.shards)
152+
&& Objects.equals(aliasFilter, that.aliasFilter)
153+
&& Objects.equals(contextIds, that.contextIds);
153154
}
154155

155156
@Override

server/src/main/java/org/elasticsearch/action/search/SearchQueryThenFetchAsyncAction.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ protected void innerOnResponse(SearchPhaseResult searchPhaseResult) {
709709
} catch (Exception e) {
710710
setFailure(state, dataNodeLocalIdx, e);
711711
} finally {
712-
doneFuture.onResponse(null);
712+
doneFuture.onResponse(null);
713713
}
714714
}
715715

0 commit comments

Comments
 (0)