From d0c0d7da147abb259bdca4fcff28000b136feb52 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tayfun=20Y=C4=B1lmaz?= Date: Fri, 9 Jan 2026 12:22:34 +0300 Subject: [PATCH] Remove redundant closing brace in ServiceScopeFactoryExtensions Eliminated an extra closing brace at the end of ServiceScopeFactoryExtensions.cs to clean up the code structure. --- .../Aether/DependencyInjection/ServiceScopeFactoryExtensions.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/framework/src/BBT.Aether.Core/BBT/Aether/DependencyInjection/ServiceScopeFactoryExtensions.cs b/framework/src/BBT.Aether.Core/BBT/Aether/DependencyInjection/ServiceScopeFactoryExtensions.cs index ed68f98..de5a9b3 100644 --- a/framework/src/BBT.Aether.Core/BBT/Aether/DependencyInjection/ServiceScopeFactoryExtensions.cs +++ b/framework/src/BBT.Aether.Core/BBT/Aether/DependencyInjection/ServiceScopeFactoryExtensions.cs @@ -157,4 +157,3 @@ public static async Task ExecuteInNewScopeAsync( } } } -}