From ec76c9e08f8ddff8e7fcdbb0c5d5c8332d40b42d Mon Sep 17 00:00:00 2001 From: elipeter Date: Mon, 1 Jun 2026 22:51:19 -0500 Subject: [PATCH] style(dynamic): reformat struct initialization for improved readability and consistency --- src/dynamic/build_pool/rust.rs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/dynamic/build_pool/rust.rs b/src/dynamic/build_pool/rust.rs index ea7b4592..9b7e78d2 100644 --- a/src/dynamic/build_pool/rust.rs +++ b/src/dynamic/build_pool/rust.rs @@ -214,10 +214,7 @@ impl TargetDirLock { Err(_) => { // Cannot create the lockfile (perms / race on dir) — proceed // unlocked rather than fail the build outright. - return Self { - path, - owned: false, - }; + return Self { path, owned: false }; } } }