Skip to content

Commit 8633d4a

Browse files
style
removing the not supported exception from xml api
1 parent 6973963 commit 8633d4a

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

com.unity.netcode.gameobjects/Runtime/Serialization/FastBufferReader.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,6 @@ public unsafe FastBufferReader(ArraySegment<byte> buffer, Allocator copyAllocato
153153
/// <param name="buffer">The buffer to copy from</param>
154154
/// <param name="copyAllocator">The allocator type used for internal data when copying an existing buffer if other than Allocator.None is specified, that memory will be owned by this FastBufferReader instance</param>
155155
/// <param name="length">The number of bytes to copy (all if this is -1)</param>
156-
/// <exception cref="NotSupportedException"></exception>
157156
public unsafe FastBufferReader(ArraySegment<byte> buffer, Allocator copyAllocator, int length = -1)
158157
{
159158
if (copyAllocator == Allocator.None)
@@ -178,7 +177,6 @@ public unsafe FastBufferReader(ArraySegment<byte> buffer, Allocator copyAllocato
178177
/// </summary>
179178
/// <param name="buffer">The buffer to copy from</param>
180179
/// <param name="copyAllocator">The allocator type used for internal data when copying an existing buffer if other than Allocator.None is specified, that memory will be owned by this FastBufferReader instance</param>
181-
/// <exception cref="NotSupportedException"></exception>
182180
public unsafe FastBufferReader(ArraySegment<byte> buffer, Allocator copyAllocator)
183181
{
184182
if (copyAllocator == Allocator.None)

0 commit comments

Comments
 (0)