Skip to content

Commit f31c2c7

Browse files
committed
Minor code style tweaks
1 parent b22494c commit f31c2c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Microsoft.Toolkit.HighPerformance/Buffers/MemoryBufferWriter{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,15 @@ public void Advance(int count)
106106
/// <inheritdoc/>
107107
public Memory<T> GetMemory(int sizeHint = 0)
108108
{
109-
this.ValidateSizeHint(sizeHint);
109+
ValidateSizeHint(sizeHint);
110110

111111
return this.memory.Slice(this.index);
112112
}
113113

114114
/// <inheritdoc/>
115115
public Span<T> GetSpan(int sizeHint = 0)
116116
{
117-
this.ValidateSizeHint(sizeHint);
117+
ValidateSizeHint(sizeHint);
118118

119119
return this.memory.Slice(this.index).Span;
120120
}

0 commit comments

Comments
 (0)