aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/util')
-rw-r--r--crates/shirabe/src/util/forgejo.rs3
-rw-r--r--crates/shirabe/src/util/platform.rs1
2 files changed, 0 insertions, 4 deletions
diff --git a/crates/shirabe/src/util/forgejo.rs b/crates/shirabe/src/util/forgejo.rs
index 4db5815..232c8f3 100644
--- a/crates/shirabe/src/util/forgejo.rs
+++ b/crates/shirabe/src/util/forgejo.rs
@@ -122,8 +122,6 @@ impl Forgejo {
) {
Ok(_) => {}
Err(e) => {
- // TODO(phase-b): anyhow::Error has no get_code(); HTTP status codes come from
- // TransportException::get_status_code().
let code = e
.downcast_ref::<crate::downloader::TransportException>()
.and_then(|te| te.get_status_code())
@@ -140,7 +138,6 @@ impl Forgejo {
return Ok(Ok(false));
}
- // TODO(phase-b): downcast anyhow::Error to TransportException for the inner Err
return Err(e);
}
}
diff --git a/crates/shirabe/src/util/platform.rs b/crates/shirabe/src/util/platform.rs
index ecc362c..bb5ce1b 100644
--- a/crates/shirabe/src/util/platform.rs
+++ b/crates/shirabe/src/util/platform.rs
@@ -399,7 +399,6 @@ impl Platform {
if php_os_family() == "Linux" {
let mut process = ProcessExecutor::new(None);
- // TODO(phase-b): inner Result for catch(\Exception); use anyhow::Result<Result<_, _>>
let mut output = String::new();
let result: Result<()> = (|| {
if process.execute_args(&["lsmod".to_string()], &mut output, ()) == 0