Skip to content

Commit cfb8a07

Browse files
committed
Refactor
1 parent 5e15288 commit cfb8a07

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

Sources/Falko.ZeroLogger/Builders/ValueStringBuilder.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ public void Append(scoped ReadOnlySpan<char> symbols)
5555
if (length is 0) return;
5656

5757
symbols.CopyTo(_span[_position..]);
58-
5958
_position += length;
6059
}
6160

@@ -67,7 +66,6 @@ public void Append(string symbols)
6766
if (length is 0) return;
6867

6968
symbols.CopyTo(_span[_position..]);
70-
7169
_position += length;
7270
}
7371

@@ -82,7 +80,6 @@ public void Append(char symbol, int repeat)
8280
public void Append(char symbol)
8381
{
8482
_span[_position] = symbol;
85-
8683
++_position;
8784
}
8885

0 commit comments

Comments
 (0)