Skip to content

Commit 83835ad

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent 9e8c63b commit 83835ad

File tree

1 file changed

+3
-1
lines changed
  • x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/querydsl/query

1 file changed

+3
-1
lines changed

x-pack/plugin/esql-core/src/main/java/org/elasticsearch/xpack/esql/core/querydsl/query/AutomatonQuery.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ public boolean equals(Object obj) {
5454
}
5555

5656
AutomatonQuery other = (AutomatonQuery) obj;
57-
return Objects.equals(field, other.field) && Objects.equals(automaton, other.automaton) && Objects.equals(automatonDescription, other.automatonDescription);
57+
return Objects.equals(field, other.field)
58+
&& Objects.equals(automaton, other.automaton)
59+
&& Objects.equals(automatonDescription, other.automatonDescription);
5860
}
5961

6062
@Override

0 commit comments

Comments
 (0)