checkstyle fix

This commit is contained in:
Soumyava Das 2023-06-12 17:15:16 +05:30
parent 59118ae885
commit 6c139de4f2
1 changed files with 3 additions and 2 deletions

View File

@ -44,7 +44,8 @@ public class StringFirstVectorAggregator implements VectorAggregator
BaseLongVectorValueSelector timeSelector,
VectorObjectSelector valueSelector,
int maxStringBytes
) {
)
{
this.timeSelector = timeSelector;
this.valueSelector = valueSelector;
this.maxStringBytes = maxStringBytes;
@ -66,7 +67,7 @@ public class StringFirstVectorAggregator implements VectorAggregator
Object[] objectsWhichMightBeStrings = valueSelector.getObjectVector();
firstTime = buf.getLong(position);
int index;
for(int i=startRow; i<endRow; i++) {
for (int i = startRow; i < endRow; i++) {
if (times[i] > firstTime) {
break;
}