Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle committed Oct 23, 2024
1 parent 1d1b790 commit 2cd30ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ public static class Request extends AcknowledgedRequest<GetInferenceModelAction.
public static boolean shouldReadPersistDefault(TransportVersion transportVersion) {
// This constant is defined on future branches but we need to know about it here
final TransportVersion INFERENCE_DONT_PERSIST_ON_READ = new TransportVersion(8_776_00_0);
return transportVersion.onOrAfter(INFERENCE_DONT_PERSIST_ON_READ) ||
transportVersion.isPatchFrom(TransportVersions.INFERENCE_DONT_PERSIST_ON_READ_BACKPORT_8_16);
return transportVersion.onOrAfter(INFERENCE_DONT_PERSIST_ON_READ)
|| transportVersion.isPatchFrom(TransportVersions.INFERENCE_DONT_PERSIST_ON_READ_BACKPORT_8_16);
}

private final String inferenceEntityId;
Expand Down

0 comments on commit 2cd30ec

Please sign in to comment.