We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6df1d9 commit add9a9bCopy full SHA for add9a9b
client/rest-high-level/src/main/java/org/elasticsearch/client/ml/StartDatafeedResponse.java
@@ -79,8 +79,7 @@ public boolean equals(Object other) {
79
}
80
81
StartDatafeedResponse that = (StartDatafeedResponse) other;
82
- return started == started
83
- && Objects.equals(node, that.node);
+ return started == that.started && Objects.equals(node, that.node);
84
85
86
@Override
0 commit comments