aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/factory.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/factory.rs')
-rw-r--r--crates/shirabe/src/factory.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/crates/shirabe/src/factory.rs b/crates/shirabe/src/factory.rs
index c099777..ac7c055 100644
--- a/crates/shirabe/src/factory.rs
+++ b/crates/shirabe/src/factory.rs
@@ -289,7 +289,6 @@ impl Factory {
let file_path_owned = file.get_path().to_string();
config.merge(&read_data, &file_path_owned);
}
- // TODO(phase-b): set_config_source takes Box<dyn ConfigSourceInterface>
config.set_config_source(Box::new(JsonConfigSource::new(
std::rc::Rc::new(std::cell::RefCell::new(file)),
false,
@@ -355,7 +354,6 @@ impl Factory {
let auth_path_owned = auth_file.get_path().to_string();
config.merge(&wrapped, &auth_path_owned);
}
- // TODO(phase-b): set_auth_config_source takes Box<dyn ConfigSourceInterface>
config.set_auth_config_source(Box::new(JsonConfigSource::new(
std::rc::Rc::new(std::cell::RefCell::new(auth_file)),
true,