File tree 2 files changed +1
-3
lines changed
2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 1
- #![ feature( async_closure) ]
2
1
pub mod compressors;
3
2
pub mod errors;
4
3
pub mod lmdb;
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use crate::vanilla_chunk_format::VanillaChunk;
5
5
use crate :: World ;
6
6
use ferrumc_anvil:: load_anvil_file;
7
7
use ferrumc_general_purpose:: paths:: BetterPathExt ;
8
- use indicatif:: { MultiProgress , ProgressBar , ProgressStyle } ;
8
+ use indicatif:: { ProgressBar , ProgressStyle } ;
9
9
use rayon:: prelude:: * ;
10
10
use std:: path:: PathBuf ;
11
11
use std:: sync:: atomic:: { AtomicU64 , Ordering } ;
@@ -78,7 +78,6 @@ impl World {
78
78
check_paths_validity ( & import_dir) ?;
79
79
80
80
// Set up progress tracking
81
- let multi_progress = Arc :: new ( MultiProgress :: new ( ) ) ;
82
81
let total_chunks = self . get_chunk_count ( & import_dir) ?;
83
82
let progress_style = ProgressStyle :: default_bar ( )
84
83
. template ( "[{elapsed_precise}] {bar:40.cyan/blue} {pos:>7}/{len:7} {msg}" )
You can’t perform that action at this time.
0 commit comments