Skip to content

Commit 882aa4d

Browse files
committed
[FIX] remove unused annotation
1 parent 2326b55 commit 882aa4d

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

parquet-variant-compute/src/variant_get/output/primitive.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ use std::sync::Arc;
3333
/// Trait for Arrow primitive types that can be used in the output builder
3434
///
3535
/// This just exists to add a generic way to convert from Variant to the primitive type
36-
#[allow(unused)]
3736
pub(super) trait ArrowPrimitiveVariant: ArrowPrimitiveType {
3837
/// Try to extract the primitive value from a Variant, returning None if it
3938
/// cannot be converted
@@ -43,7 +42,6 @@ pub(super) trait ArrowPrimitiveVariant: ArrowPrimitiveType {
4342
}
4443

4544
/// Outputs Primitive arrays
46-
#[allow(unused)]
4745
pub(super) struct PrimitiveOutputBuilder<'a, T: ArrowPrimitiveVariant> {
4846
/// What path to extract
4947
path: VariantPath<'a>,

parquet-variant-compute/src/variant_get/output/variant.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ use parquet_variant::{Variant, VariantPath};
2424
use std::sync::Arc;
2525

2626
/// Outputs VariantArrays
27-
#[allow(unused)]
2827
pub(super) struct VariantOutputBuilder<'a> {
2928
/// What path to extract
3029
path: VariantPath<'a>,

0 commit comments

Comments
 (0)