Skip to content

Commit

Permalink
chore: remove some comments (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrobbel authored Jul 26, 2023
2 parents dff28c4 + 048f330 commit 3cbea45
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
3 changes: 1 addition & 2 deletions src/array/boolean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,11 @@ where

#[cfg(test)]
mod tests {
use super::*;
use crate::{
bitmap::{BitmapRef, ValidityBitmap},
buffer::{BoxBuffer, BufferRefMut},
};

use super::*;
use std::mem;

#[test]
Expand Down
7 changes: 2 additions & 5 deletions src/array/fixed_size_primitive.rs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
use super::Array;
use crate::{
buffer::{BufferType, VecBuffer},
validity::Validity,
FixedSize,
Length,
// Length,
FixedSize, Length,
};

use super::Array;

/// Array with primitive values.
pub struct FixedSizePrimitiveArray<
T: FixedSize,
Expand Down
2 changes: 0 additions & 2 deletions src/array/mod.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
//! Sequences of values with known length all having the same type.
// use std::collections::VecDeque;

use crate::{buffer::BufferType, FixedSize};
use std::collections::VecDeque;

Expand Down
4 changes: 1 addition & 3 deletions src/offset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,10 +183,8 @@ impl<T, OffsetItem: OffsetElement, Buffer: BufferType> Length

#[cfg(test)]
mod tests {
use crate::bitmap::{BitmapRef, ValidityBitmap};

use super::*;
// use crate::bitmap::{BitmapRef, ValidityBitmap};
use crate::bitmap::{BitmapRef, ValidityBitmap};

#[test]
fn default() {
Expand Down

0 comments on commit 3cbea45

Please sign in to comment.