Skip to content

Commit 5883603

Browse files
committed
update
1 parent 121aa54 commit 5883603

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

rust/cubenativeutils/src/wrappers/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::{inner_types::InnerTypes, object::NativeBox, object_handle::NativeObjectHandle};
1+
use super::{inner_types::InnerTypes, object_handle::NativeObjectHandle};
22
use cubesql::CubeError;
33

44
pub trait NativeContext<IT: InnerTypes>: Clone {

rust/cubenativeutils/src/wrappers/neon/context.rs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ use super::{
66
},
77
};
88
use crate::wrappers::{
9-
context::{NativeContext, NativeContextHolder},
10-
object::NativeObject,
11-
object_handle::NativeObjectHandle,
9+
context::NativeContext, object::NativeObject, object_handle::NativeObjectHandle,
1210
};
1311
use cubesql::CubeError;
1412
use neon::prelude::*;
1513
use std::{
16-
cell::{RefCell, RefMut},
14+
cell::RefCell,
1715
marker::PhantomData,
1816
panic::{catch_unwind, resume_unwind, AssertUnwindSafe},
1917
rc::{Rc, Weak},

rust/cubenativeutils/src/wrappers/neon/object/neon_array.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use super::{NeonObject, NeonTypeHandle};
22
use crate::wrappers::{
33
neon::inner_types::NeonInnerTypes,
4-
object::{NativeArray, NativeObject, NativeType},
4+
object::{NativeArray, NativeType},
55
object_handle::NativeObjectHandle,
66
};
77
use cubesql::CubeError;

0 commit comments

Comments
 (0)