Skip to content

Commit 4028316

Browse files
committed
Remove TODOs
1 parent 4f88db4 commit 4028316

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

arrow-array/src/ffi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ use arrow_schema::{ArrowError, DataType, UnionMode};
111111

112112
use crate::array::ArrayRef;
113113

114-
type Result<T> = std::result::Result<T, ArrowError>; // TODO(alexandreyc): we should probably move Result to arrow_schema
114+
type Result<T> = std::result::Result<T, ArrowError>;
115115

116116
/// Exports an array to raw pointers of the C Data Interface provided by the consumer.
117117
/// # Safety

arrow-array/src/ffi_stream.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ use crate::array::StructArray;
7171
use crate::ffi::from_ffi_and_data_type;
7272
use crate::record_batch::{RecordBatch, RecordBatchReader};
7373

74-
type Result<T> = std::result::Result<T, ArrowError>; // TODO(alexandreyc): we should probably move Result to arrow_schema
74+
type Result<T> = std::result::Result<T, ArrowError>;
7575

7676
const ENOMEM: i32 = 12;
7777
const EIO: i32 = 5;

0 commit comments

Comments
 (0)