Skip to content

Commit c81dfd3

Browse files
committed
spotless
1 parent 7915a54 commit c81dfd3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/inference/action/GetInferenceModelAction.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,9 @@ public boolean equals(Object o) {
9797
if (this == o) return true;
9898
if (o == null || getClass() != o.getClass()) return false;
9999
Request request = (Request) o;
100-
return Objects.equals(inferenceEntityId, request.inferenceEntityId) && taskType == request.taskType &&
101-
doNotPersistDefaultConfigs == request.doNotPersistDefaultConfigs;
100+
return Objects.equals(inferenceEntityId, request.inferenceEntityId)
101+
&& taskType == request.taskType
102+
&& doNotPersistDefaultConfigs == request.doNotPersistDefaultConfigs;
102103
}
103104

104105
@Override

0 commit comments

Comments
 (0)