Skip to content

Commit e342afe

Browse files
committed
Made PushArray private in BitWriter
1 parent 0e3e5ee commit e342afe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

MLAPI/NetworkingManagerComponents/Binary/BitWriter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private void Push<T>(T b)
105105
public void WriteIntArray(int[] i, bool known = false) => PushArray(i, known);
106106
public void WriteLongArray(long[] l, bool known = false) => PushArray(l, known);
107107

108-
public void PushArray<T>(T[] t, bool knownSize = false)
108+
private void PushArray<T>(T[] t, bool knownSize = false)
109109
{
110110
if (!knownSize) Push((uint)t.Length);
111111
bool signed = IsSigned(t.GetType().GetElementType());

0 commit comments

Comments
 (0)