[7.x] Fix assignment

Backport of https://github.com/elastic/elasticsearch/pull/48216
This commit is contained in:
Przemysław Witek 2019-10-22 11:34:09 +02:00 committed by GitHub
parent 144e8a0f1a
commit aa29567e11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -206,7 +206,7 @@ public class TreeNode implements ToXContentObject {
private Integer rightChild;
public Builder(int nodeIndex) {
nodeIndex = nodeIndex;
this.nodeIndex = nodeIndex;
}
private Builder() {