Skip to content

Commit

Permalink
checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
auden-woolfson committed Oct 18, 2024
1 parent 67f3c7b commit c7deb43
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
public class Int64TimeAndTimestampMicrosNestedBatchReader
extends AbstractNestedBatchReader
{
private boolean withTimezone = false;
private boolean withTimezone;

public Int64TimeAndTimestampMicrosNestedBatchReader(RichColumnDescriptor columnDescriptor)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class Int64TimeAndTimestampMicrosDeltaBinaryPackedValuesDecoder

private final DeltaBinaryPackingValuesReader innerReader;

private boolean withTimezone = false;
private boolean withTimezone;

public Int64TimeAndTimestampMicrosDeltaBinaryPackedValuesDecoder(int valueCount, ByteBufferInputStream bufferInputStream)
throws IOException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public class Int64TimeAndTimestampMicrosPlainValuesDecoder

private int bufferOffset;

private boolean withTimezone = false;
private boolean withTimezone;

public Int64TimeAndTimestampMicrosPlainValuesDecoder(byte[] byteBuffer, int bufferOffset, int length)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class Int64TimeAndTimestampMicrosRLEDictionaryValuesDecoder

private final LongDictionary dictionary;

private boolean withTimezone = false;
private boolean withTimezone;

public Int64TimeAndTimestampMicrosRLEDictionaryValuesDecoder(int bitWidth, InputStream inputStream, LongDictionary dictionary)
{
Expand Down Expand Up @@ -78,7 +78,7 @@ public void readNext(long[] values, int offset, int length)
final long rleDictionaryValue = MICROSECONDS.toMillis(dictionary.decodeToLong(rleValue));
while (destinationIndex < endIndex) {
if (isWithTimezone()) {
values[destinationIndex++] = packDateTimeWithZone(rleDictionaryValue, TimeZoneKey.UTC_KEY);
values[destinationIndex++] = packDateTimeWithZone(rleDictionaryValue, UTC_KEY);
}
else {
values[destinationIndex++] = rleDictionaryValue;
Expand Down

0 comments on commit c7deb43

Please sign in to comment.