File tree 3 files changed +7
-4
lines changed 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
using System . Collections . Concurrent ;
2
+ using System . Text ;
2
3
using System . Text . Json . Serialization ;
3
4
using GameFrameX . Foundation . Logger ;
4
5
using GameFrameX . NetWork . Abstractions ;
@@ -57,7 +58,7 @@ public string ToFormatMessageString()
57
58
{
58
59
try
59
60
{
60
- var stringBuilder = StringBuilderCache . Acquire ( ) ;
61
+ var stringBuilder = new StringBuilder ( ) ;
61
62
stringBuilder . Clear ( ) ;
62
63
stringBuilder . AppendLine ( ) ;
63
64
// 向下的箭头
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 ;
2
3
using GameFrameX . Foundation . Json ;
3
4
using GameFrameX . Foundation . Logger ;
4
5
using GameFrameX . NetWork . Abstractions ;
@@ -79,7 +80,7 @@ public string ToFormatMessageString()
79
80
{
80
81
try
81
82
{
82
- var stringBuilder = StringBuilderCache . Acquire ( ) ;
83
+ var stringBuilder = new StringBuilder ( ) ;
83
84
stringBuilder . Clear ( ) ;
84
85
stringBuilder . AppendLine ( ) ;
85
86
// 向下的箭头
Original file line number Diff line number Diff line change 1
1
using System . Collections . Concurrent ;
2
+ using System . Text ;
2
3
using System . Text . Json . Serialization ;
3
4
using GameFrameX . Foundation . Logger ;
4
5
using GameFrameX . NetWork . Abstractions ;
@@ -64,7 +65,7 @@ public string ToFormatMessageString()
64
65
{
65
66
try
66
67
{
67
- var stringBuilder = StringBuilderCache . Acquire ( ) ;
68
+ var stringBuilder = new StringBuilder ( ) ;
68
69
stringBuilder . Clear ( ) ;
69
70
stringBuilder . AppendLine ( ) ;
70
71
// 向下的箭头
You can’t perform that action at this time.
0 commit comments