From 423f2dff5d1d9e4188c6772c997fa97f8ebf96fe Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 14:12:08 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #10 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/Disposables/issues/10 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 0000000..30b349e --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/Disposables/issues/10 +Your prepared branch: issue-10-313805fd +Your prepared working directory: /tmp/gh-issue-solver-1757848325254 + +Proceed. \ No newline at end of file From c8f573e1f48a478600c85f2e9d59ee3c57adb579 Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 14:19:59 +0300 Subject: [PATCH 2/3] Fix internationalization inconsistencies in code comments MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Fix comment ordering in IDisposable.cs (English first, Russian second) - Add missing Russian translation for static constructor in DisposableBase.cs - Ensure consistent bilingual documentation throughout the codebase 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- csharp/Platform.Disposables/DisposableBase.cs | 4 +++- csharp/Platform.Disposables/IDisposable.cs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/csharp/Platform.Disposables/DisposableBase.cs b/csharp/Platform.Disposables/DisposableBase.cs index c030a61..26f0c97 100644 --- a/csharp/Platform.Disposables/DisposableBase.cs +++ b/csharp/Platform.Disposables/DisposableBase.cs @@ -60,7 +60,9 @@ protected virtual bool AllowMultipleDisposeCalls /// /// Initializes a new instance. /// - /// + /// + /// Инициализирует новый экземпляр . + /// /// [MethodImpl(MethodImplOptions.AggressiveInlining)] static DisposableBase() => _currentDomain.ProcessExit += OnProcessExit; diff --git a/csharp/Platform.Disposables/IDisposable.cs b/csharp/Platform.Disposables/IDisposable.cs index 30fa4c7..54bd4f7 100644 --- a/csharp/Platform.Disposables/IDisposable.cs +++ b/csharp/Platform.Disposables/IDisposable.cs @@ -3,8 +3,8 @@ namespace Platform.Disposables { /// - /// Представляет расширенный интерфейс . /// Represents an extended interface. + /// Представляет расширенный интерфейс . /// public interface IDisposable : System.IDisposable { From eada8891110e426dadbbd8549fe59adc5410b769 Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 14:20:39 +0300 Subject: [PATCH 3/3] Remove CLAUDE.md - Claude command completed --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 30b349e..0000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/Disposables/issues/10 -Your prepared branch: issue-10-313805fd -Your prepared working directory: /tmp/gh-issue-solver-1757848325254 - -Proceed. \ No newline at end of file