From 3d4a0cadc950d4440251efa11b55b0bfb0afdef7 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 6 Aug 2026 04:22:46 +0900 Subject: chore: drop @param/@return tags that only restate Rust types The ported docblocks copied @param and @return straight from the PHP source. When such a tag carries nothing but a type and an argument name, the Rust signature already states it, so the line is noise. Tags whose text adds prose beyond the type are kept. Co-Authored-By: Claude Opus 5 (1M context) --- crates/shirabe/src/util/svn.rs | 7 ------- 1 file changed, 7 deletions(-) (limited to 'crates/shirabe/src/util/svn.rs') diff --git a/crates/shirabe/src/util/svn.rs b/crates/shirabe/src/util/svn.rs index 50315316..a2974760 100644 --- a/crates/shirabe/src/util/svn.rs +++ b/crates/shirabe/src/util/svn.rs @@ -124,7 +124,6 @@ impl Svn { .map(|o| o.unwrap_or_default()) } - /// @param non-empty-list $svnCommand fn execute_with_auth_retry( &mut self, svn_command: Vec, @@ -257,8 +256,6 @@ impl Svn { /// @param non-empty-list $cmd Usually 'svn ls' or something like that. /// @param string $url Repo URL. /// @param string $path Target for a checkout - /// - /// @return non-empty-list pub(crate) fn get_command( &mut self, mut cmd: Vec, @@ -280,8 +277,6 @@ impl Svn { /// Return the credential string for the svn command. /// /// Adds --no-auth-cache when credentials are present. - /// - /// @return list pub(crate) fn get_credential_args(&mut self) -> Vec { if !self.has_auth() { return vec![]; @@ -354,8 +349,6 @@ impl Svn { } /// Return the no-auth-cache switch. - /// - /// @return list pub(crate) fn get_auth_cache_args(&self) -> Vec { if self.cache_credentials { vec![] -- cgit v1.3.1