From eea4efe87e455742ec17881ee93d8095925e8516 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 28 May 2026 22:43:11 +0900 Subject: refactor(repository): introduce Rc> handles for repositories Co-Authored-By: Claude Opus 4.7 (1M context) --- crates/shirabe/src/command/audit_command.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crates/shirabe/src/command/audit_command.rs') diff --git a/crates/shirabe/src/command/audit_command.rs b/crates/shirabe/src/command/audit_command.rs index ec8b495..270bacb 100644 --- a/crates/shirabe/src/command/audit_command.rs +++ b/crates/shirabe/src/command/audit_command.rs @@ -74,8 +74,7 @@ impl AuditCommand { .borrow() .get_repositories() { - // TODO(phase-b): repositories are shared (PHP class semantics); needs Rc wrapper - repo_set.add_repository(repo.clone_box())?; + repo_set.add_repository(repo.clone())?; } let audit_config = AuditConfig::from_config( -- cgit v1.3.1