Skip to content

Commit 5cf53db

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent a9f706f commit 5cf53db

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

x-pack/plugin/inference/src/main/java/org/elasticsearch/xpack/inference/registry/ModelStoreResponse.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@
1818
public record ModelStoreResponse(String inferenceId, RestStatus status, @Nullable Exception failureCause) implements Writeable {
1919

2020
public ModelStoreResponse(StreamInput in) throws IOException {
21-
this(
22-
in.readString(),
23-
RestStatus.readFrom(in),
24-
in.readException()
25-
);
21+
this(in.readString(), RestStatus.readFrom(in), in.readException());
2622
}
2723

2824
public boolean failed() {

0 commit comments

Comments
 (0)