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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 9 deletions

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;

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;