File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11using System . Collections . Concurrent ;
2+ using System . Text ;
23using System . Text . Json . Serialization ;
34using GameFrameX . Foundation . Logger ;
45using GameFrameX . NetWork . Abstractions ;
@@ -57,7 +58,7 @@ public string ToFormatMessageString()
5758 {
5859 try
5960 {
60- var stringBuilder = StringBuilderCache . Acquire ( ) ;
61+ var stringBuilder = new StringBuilder ( ) ;
6162 stringBuilder . Clear ( ) ;
6263 stringBuilder . AppendLine ( ) ;
6364 // 向下的箭头
Original file line number Diff line number Diff line change 1- using System . Text . Json . Serialization ;
1+ using System . Text ;
2+ using System . Text . Json . Serialization ;
23using GameFrameX . Foundation . Json ;
34using GameFrameX . Foundation . Logger ;
45using GameFrameX . NetWork . Abstractions ;
@@ -79,7 +80,7 @@ public string ToFormatMessageString()
7980 {
8081 try
8182 {
82- var stringBuilder = StringBuilderCache . Acquire ( ) ;
83+ var stringBuilder = new StringBuilder ( ) ;
8384 stringBuilder . Clear ( ) ;
8485 stringBuilder . AppendLine ( ) ;
8586 // 向下的箭头
Original file line number Diff line number Diff line change 11using System . Collections . Concurrent ;
2+ using System . Text ;
23using System . Text . Json . Serialization ;
34using GameFrameX . Foundation . Logger ;
45using GameFrameX . NetWork . Abstractions ;
@@ -64,7 +65,7 @@ public string ToFormatMessageString()
6465 {
6566 try
6667 {
67- var stringBuilder = StringBuilderCache . Acquire ( ) ;
68+ var stringBuilder = new StringBuilder ( ) ;
6869 stringBuilder . Clear ( ) ;
6970 stringBuilder . AppendLine ( ) ;
7071 // 向下的箭头
You can’t perform that action at this time.
0 commit comments