diff options
| author | 2025-01-30 23:39:40 -0600 | |
|---|---|---|
| committer | 2025-01-30 23:39:40 -0600 | |
| commit | 58b85cd77338bfc5a35fa39e10598cadb27eee32 (patch) | |
| tree | 504f2ce93ff4ef3129b757018a3d9b47f257328b /src/launcher/jre.rs | |
| parent | remove dead oauth code (diff) | |
Remove some unused imports but not all of them
Diffstat (limited to 'src/launcher/jre.rs')
| -rw-r--r-- | src/launcher/jre.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/launcher/jre.rs b/src/launcher/jre.rs index a3cbb27..0b92c20 100644 --- a/src/launcher/jre.rs +++ b/src/launcher/jre.rs @@ -1,4 +1,3 @@ -use std::collections::HashSet; use std::error::Error; use std::fmt::{Debug, Display, Formatter}; use std::path::{Component, Path, PathBuf}; @@ -7,8 +6,6 @@ use futures::{stream, StreamExt, TryStreamExt}; use log::{debug, info, warn}; use reqwest::Client; use tokio::{fs, io, io::ErrorKind}; -use tokio::fs::File; -use tokio::io::AsyncWriteExt; mod arch; mod manifest; @@ -21,7 +18,7 @@ use crate::launcher::download::MultiDownloader; use crate::launcher::jre::download::{LzmaDownloadError, LzmaDownloadJob}; use crate::launcher::jre::manifest::JavaRuntimeFile; use crate::util; -use crate::util::{EnsureFileError, FileVerifyError, IntegrityError}; +use crate::util::{EnsureFileError, IntegrityError}; use crate::version::DownloadInfo; use super::constants; |
