Skip to content

Commit

Permalink
Fixed some format violations
Browse files Browse the repository at this point in the history
  • Loading branch information
normanj-bitquill committed Jun 12, 2024
1 parent e6c5efa commit f8897fd
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
* null. A validity buffer (bit vector) is maintained to track which elements in the vector are
* null.
*/
public final class Decimal256Vector extends BaseFixedWidthVector implements ValueIterableVector<BigDecimal> {
public final class Decimal256Vector extends BaseFixedWidthVector
implements ValueIterableVector<BigDecimal> {
public static final int MAX_PRECISION = 76;
public static final byte TYPE_WIDTH = 32;
private static final boolean LITTLE_ENDIAN = ByteOrder.nativeOrder() == ByteOrder.LITTLE_ENDIAN;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
* which could be null. A validity buffer (bit vector) is maintained to track which elements in the
* vector are null.
*/
public final class TimeMilliVector extends BaseFixedWidthVector implements ValueIterableVector<LocalDateTime> {
public final class TimeMilliVector extends BaseFixedWidthVector
implements ValueIterableVector<LocalDateTime> {
public static final byte TYPE_WIDTH = 4;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
* resolution) values which could be null. A validity buffer (bit vector) is maintained to track
* which elements in the vector are null.
*/
public final class TimeStampMilliTZVector extends TimeStampVector implements ValueIterableVector<Long> {
public final class TimeStampMilliTZVector extends TimeStampVector
implements ValueIterableVector<Long> {
private final String timeZone;

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
* VarBinaryVector implements a variable width vector of binary values which could be NULL. A
* validity buffer (bit vector) is maintained to track which elements in the vector are null.
*/
public final class VarBinaryVector extends BaseVariableWidthVector implements ValueIterableVector<byte[]> {
public final class VarBinaryVector extends BaseVariableWidthVector
implements ValueIterableVector<byte[]> {

/**
* Instantiate a VarBinaryVector. This doesn't allocate any memory for the data in vector.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,8 @@ public FieldVector getNewVector(String name, FieldType fieldType, BufferAllocato
}
}

static class UuidVector extends ExtensionTypeVector<FixedSizeBinaryVector> implements ValueIterableVector<UUID> {
static class UuidVector extends ExtensionTypeVector<FixedSizeBinaryVector>
implements ValueIterableVector<UUID> {

public UuidVector(
String name, BufferAllocator allocator, FixedSizeBinaryVector underlyingVector) {
Expand Down

0 comments on commit f8897fd

Please sign in to comment.