Skip to content

Commit 232fa82

Browse files
author
elasticsearchmachine
committed
[CI] Auto commit changes from spotless
1 parent b40821a commit 232fa82

File tree

1 file changed

+1
-1
lines changed
  • server/src/main/java/org/elasticsearch/cluster/routing/allocation/decider

1 file changed

+1
-1
lines changed

server/src/main/java/org/elasticsearch/cluster/routing/allocation/decider/Decision.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ static Decision readFrom(StreamInput in) throws IOException {
9191

9292
private static Single readSingleFrom(StreamInput in) throws IOException {
9393
final Type type = Type.readFrom(in);
94-
Preferred preferred = type == Type.YES ? Preferred.YES : Preferred.NO;
94+
Preferred preferred = type == Type.YES ? Preferred.YES : Preferred.NO;
9595
if (in.getTransportVersion().onOrAfter(TransportVersions.ALLOCATION_DECISION_YES_NOT_PREFERRED)) {
9696
preferred = in.readEnum(Preferred.class);
9797
}

0 commit comments

Comments
 (0)