Skip to content

Commit d875025

Browse files
ooplesclaude
andcommitted
fix: remove utf-8 bom from bfgsoptimizer.cs
- Remove byte order mark (BOM) from beginning of BFGSOptimizer.cs file - File now starts directly with 'using' directive as expected - Resolves Issue #94 from code review (MINOR encoding issue) UTF-8 BOM can cause compatibility issues with some tools and is unnecessary for C# source files which default to UTF-8 encoding. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 2af0d24 commit d875025

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Optimizers/BFGSOptimizer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using Newtonsoft.Json;
1+
using Newtonsoft.Json;
22

33
namespace AiDotNet.Optimizers;
44

0 commit comments

Comments
 (0)