Skip to content

Commit 23549e6

Browse files
committed
Spotless + Checkstyle
1 parent b76a0ea commit 23549e6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

arrow-variant/src/main/java/org/apache/arrow/variant/Variant.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ private Variant(org.apache.parquet.variant.Variant delegate) {
5959
this.delegate = delegate;
6060
}
6161

62+
/** Constructs a Variant from a NullableVariantHolder. */
6263
public Variant(NullableVariantHolder holder) {
6364
this(
6465
holder.metadataBuffer,

arrow-variant/src/main/java/org/apache/arrow/variant/extension/VariantType.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,9 @@
2727
import org.apache.arrow.vector.types.pojo.FieldType;
2828

2929
/**
30-
* Arrow extension type for <a href="https://github.com/apache/parquet-format/blob/master/VariantEncoding.md">
31-
* Parquet Variant</a> binary encoding. The type itself does not support shredded variant data.
30+
* Arrow extension type for <a
31+
* href="https://github.com/apache/parquet-format/blob/master/VariantEncoding.md">Parquet
32+
* Variant</a> binary encoding. The type itself does not support shredded variant data.
3233
*/
3334
public final class VariantType extends ExtensionType {
3435

0 commit comments

Comments
 (0)