Skip to content

Commit 723e9e2

Browse files
committed
dist: avoid unnecessary type annotations
1 parent 5307066 commit 723e9e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dist/manifestation.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,8 +153,8 @@ impl Manifestation {
153153
let altered = tmp_cx.dist_server != DEFAULT_DIST_SERVER;
154154

155155
// Download component packages and validate hashes
156-
let mut things_to_install: Vec<(Component, CompressionKind, File)> = Vec::new();
157-
let mut things_downloaded: Vec<String> = Vec::new();
156+
let mut things_to_install = Vec::new();
157+
let mut things_downloaded = Vec::new();
158158
let components = update.components_urls_and_hashes(new_manifest)?;
159159
let components_len = components.len();
160160

0 commit comments

Comments
 (0)