Skip to content

Commit abe5d9f

Browse files
committed
don't actually need annotation
1 parent 38035c9 commit abe5d9f

File tree

1 file changed

+1
-1
lines changed
  • kernel/examples/read-table-multi-threaded/src

1 file changed

+1
-1
lines changed

kernel/examples/read-table-multi-threaded/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ fn try_main() -> DeltaResult<()> {
175175
let (mut scan_file_tx, scan_file_rx) = spmc::channel();
176176

177177
// fire up each thread. they will be automatically joined at the end due to the scope
178-
thread::scope(|s| -> DeltaResult<()> {
178+
thread::scope(|s| {
179179
(0..cli.thread_count).for_each(|_| {
180180
// items that we need to send to the other thread
181181
let scan_state = Arc::new(ScanState {

0 commit comments

Comments
 (0)