File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
server/src/main/java/org/elasticsearch/index/query Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ public InnerHitBuilder(StreamInput in) throws IOException {
199199 boolean hasChildren = in .readBoolean ();
200200 assert hasChildren == false ;
201201 }
202- if (in .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
202+ if (in .getVersion ().onOrAfter (Version .V_6_4_0 )) {
203203 this .innerCollapseBuilder = in .readOptionalWriteable (CollapseBuilder ::new );
204204 }
205205 }
@@ -247,7 +247,7 @@ public void writeTo(StreamOutput out) throws IOException {
247247 }
248248 }
249249 out .writeOptionalWriteable (highlightBuilder );
250- if (out .getVersion ().onOrAfter (Version .V_7_0_0_alpha1 )) {
250+ if (out .getVersion ().onOrAfter (Version .V_6_4_0 )) {
251251 out .writeOptionalWriteable (innerCollapseBuilder );
252252 }
253253 }
You can’t perform that action at this time.
0 commit comments