Skip to content

Commit 814b4ab

Browse files
committed
more unnecessary changes
1 parent a713f7c commit 814b4ab

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

vortex-array/src/compute/filter.rs

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,6 @@ impl FilterMask {
264264
self.range_selectivity
265265
}
266266

267-
/// Get the canonical representation of the mask as a [BoolArray].
268-
pub fn to_bool_array(&self) -> VortexResult<BoolArray> {
269-
Ok(BoolArray::from(self.boolean_buffer()?.clone()))
270-
}
271-
272267
/// Get the canonical representation of the mask.
273268
pub fn to_boolean_buffer(&self) -> VortexResult<BooleanBuffer> {
274269
log::debug!(
@@ -291,7 +286,7 @@ impl FilterMask {
291286
})
292287
}
293288

294-
pub(crate) fn indices(&self) -> VortexResult<&[usize]> {
289+
fn indices(&self) -> VortexResult<&[usize]> {
295290
self.indices
296291
.get_or_try_init(|| {
297292
let mut indices = Vec::with_capacity(self.true_count());

0 commit comments

Comments
 (0)