aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-20 01:16:50 +0900
committernsfisis <nsfisis@gmail.com>2026-06-20 02:22:41 +0900
commitefec43b3b8827820cf35fe1b73d8e33f5fe84eb4 (patch)
treea62bbba72324de48be5f8e689559f8d9e288fc61 /crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
parentcac18ef73a39b4ac41fa4d6ccb753804d4c42cb7 (diff)
downloadphp-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.tar.gz
php-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.tar.zst
php-shirabe-efec43b3b8827820cf35fe1b73d8e33f5fe84eb4.zip
refactor: auto-fix clippy warnings
Diffstat (limited to 'crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs')
-rw-r--r--crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
index b0985e5..44c0d08 100644
--- a/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
+++ b/crates/shirabe/src/repository/vcs/git_bitbucket_driver.rs
@@ -789,16 +789,16 @@ impl GitBitbucketDriver {
_ => return,
};
for clone_link in list {
- if let PhpMixed::Array(m) = clone_link.as_ref() {
- if m.get("name").and_then(|v| v.as_string()) == Some("https") {
- // Format: https://(user@)bitbucket.org/{user}/{repo}
- // Strip username from URL (only present in clone URL's for private repositories)
- self.clone_https_url = Preg::replace(
- r"/https:\/\/([^@]+@)?/",
- "https://",
- m.get("href").and_then(|v| v.as_string()).unwrap_or(""),
- );
- }
+ if let PhpMixed::Array(m) = clone_link.as_ref()
+ && m.get("name").and_then(|v| v.as_string()) == Some("https")
+ {
+ // Format: https://(user@)bitbucket.org/{user}/{repo}
+ // Strip username from URL (only present in clone URL's for private repositories)
+ self.clone_https_url = Preg::replace(
+ r"/https:\/\/([^@]+@)?/",
+ "https://",
+ m.get("href").and_then(|v| v.as_string()).unwrap_or(""),
+ );
}
}
}