aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/self_update
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/self_update')
-rw-r--r--crates/shirabe/src/self_update/versions.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/shirabe/src/self_update/versions.rs b/crates/shirabe/src/self_update/versions.rs
index 88b0a45..c8c3f54 100644
--- a/crates/shirabe/src/self_update/versions.rs
+++ b/crates/shirabe/src/self_update/versions.rs
@@ -12,7 +12,6 @@ use shirabe_php_shim::{
};
pub struct Versions {
- pub channels: Vec<String>,
http_downloader: std::rc::Rc<std::cell::RefCell<HttpDownloader>>,
config: std::rc::Rc<std::cell::RefCell<Config>>,
channel: Option<String>,
@@ -36,7 +35,6 @@ impl Versions {
http_downloader: std::rc::Rc<std::cell::RefCell<HttpDownloader>>,
) -> Self {
Self {
- channels: Self::CHANNELS.iter().map(|s| s.to_string()).collect(),
http_downloader,
config,
channel: None,