chore: reformat some imports for consistency (#2768)

This commit is contained in:
Carl Lerche
2020-08-13 08:10:00 -07:00
committed by GitHub
parent 8feebab7cd
commit 71da06097b
2 changed files with 5 additions and 9 deletions
+3 -5
View File
@@ -1,8 +1,6 @@
use crate::loom::{
cell::UnsafeCell,
sync::atomic::{AtomicPtr, AtomicUsize},
thread,
};
use crate::loom::cell::UnsafeCell;
use crate::loom::sync::atomic::{AtomicPtr, AtomicUsize};
use crate::loom::thread;
use std::mem::MaybeUninit;
use std::ops;
+2 -4
View File
@@ -1,9 +1,7 @@
//! A concurrent, lock-free, FIFO list.
use crate::loom::{
sync::atomic::{AtomicPtr, AtomicUsize},
thread,
};
use crate::loom::sync::atomic::{AtomicPtr, AtomicUsize};
use crate::loom::thread;
use crate::sync::mpsc::block::{self, Block};
use std::fmt;