Skip to content

Commit 74836c7

Browse files
authored
Changed GetNetworkedBehaviorChildClassesMethods method from camel to pascal casing
1 parent 9d9cd05 commit 74836c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

MLAPI/MonoBehaviours/Core/NetworkedBehaviour.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ private ulong HashMethodName(string name)
414414
return 0;
415415
}
416416

417-
private MethodInfo[] getNetworkedBehaviorChildClassesMethods(Type type, List<MethodInfo> list = null)
417+
private MethodInfo[] GetNetworkedBehaviorChildClassesMethods(Type type, List<MethodInfo> list = null)
418418
{
419419
if (list == null)
420420
{
@@ -428,7 +428,7 @@ private MethodInfo[] getNetworkedBehaviorChildClassesMethods(Type type, List<Met
428428

429429
if (type.BaseType != null && type.BaseType != typeof(NetworkedBehaviour))
430430
{
431-
return getNetworkedBehaviorChildClassesMethods(type.BaseType, list);
431+
return GetNetworkedBehaviorChildClassesMethods(type.BaseType, list);
432432
}
433433
else
434434
{
@@ -447,7 +447,7 @@ private void CacheAttributes()
447447
if (Methods.ContainsKey(type)) methods = Methods[type];
448448
else
449449
{
450-
methods = getNetworkedBehaviorChildClassesMethods(type);
450+
methods = GetNetworkedBehaviorChildClassesMethods(type);
451451
Methods.Add(type, methods);
452452
}
453453

0 commit comments

Comments
 (0)