Skip to content

Commit 14dd7e1

Browse files
style
Don't need the parenthesis.
1 parent 7fe9733 commit 14dd7e1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

com.unity.netcode.gameobjects/Tests/Runtime/Rpc/UniversalRpcTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void OnRpcReceived([CallerMemberName] string methodName = "")
3434
Received = methodName;
3535
ReceivedCount++;
3636
}
37-
public void OnRpcReceivedWithParams(int a, bool b, float f, string s, [CallerMemberName()] string methodName = "")
37+
public void OnRpcReceivedWithParams(int a, bool b, float f, string s, [CallerMemberName] string methodName = "")
3838
{
3939
Received = methodName;
4040
ReceivedCount++;

0 commit comments

Comments
 (0)