Skip to content

Commit 31e2f74

Browse files
style - PVP
Changing some new public things to internal things.
1 parent 788463d commit 31e2f74

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

com.unity.netcode.gameobjects/Tests/Runtime/Transports/UnityTransportTestHelpers.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ internal static void InitializeTransport(out UnityTransport transport, out List<
127127
transport.Initialize();
128128
}
129129

130-
public static bool VerboseDebug = false;
130+
internal static bool VerboseDebug = false;
131131

132-
public static void VerboseLog(string msg)
132+
internal static void VerboseLog(string msg)
133133
{
134134
if (VerboseDebug)
135135
{
@@ -153,7 +153,7 @@ public class TransportEventLogger
153153
{
154154
private readonly List<TransportEvent> m_Events = new List<TransportEvent>();
155155
public List<TransportEvent> Events => m_Events;
156-
public string Identifier;
156+
internal string Identifier;
157157
public void HandleEvent(NetworkEvent type, ulong clientID, ArraySegment<byte> data, float receiveTime)
158158
{
159159
VerboseLog($"[{Identifier}]Tansport Event][{type}][{receiveTime}] Client-{clientID}");

0 commit comments

Comments
 (0)