mirror of https://github.com/apache/lucene.git
Remove redundant initialisation in DynamicRangeUtil
This commit is contained in:
parent
6634b41f42
commit
955986d836
|
@ -179,8 +179,8 @@ public final class DynamicRangeUtil {
|
||||||
private static final class SegmentOutput {
|
private static final class SegmentOutput {
|
||||||
private final long[] values;
|
private final long[] values;
|
||||||
private final long[] weights;
|
private final long[] weights;
|
||||||
private long segmentTotalWeight = 0;
|
private long segmentTotalWeight;
|
||||||
private int segmentIdx = 0;
|
private int segmentIdx;
|
||||||
|
|
||||||
public SegmentOutput(int hitsLength) {
|
public SegmentOutput(int hitsLength) {
|
||||||
this.values = new long[hitsLength];
|
this.values = new long[hitsLength];
|
||||||
|
|
Loading…
Reference in New Issue