Skip to content

Commit ea3f345

Browse files
Erik Bylundkirre-bylund
authored andcommitted
Remove void from function name GetCurrentLoadout...
1 parent a6cbb54 commit ea3f345

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Runtime/Game/LootLockerSDKManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2704,14 +2704,14 @@ public static void UnEquipIdAssetToClass(string classID, string assetInstanceID,
27042704
[Obsolete("This function is deprecated and will be removed soon. Please use the function GetCurrentLoadoutToDefaultClass() instead")]
27052705
public static void GetCurrentLoadOutToDefaultCharacter(Action<LootLockerGetCurrentLoadoutToDefaultClassResponse> onComplete)
27062706
{
2707-
voidGetCurrentLoadoutToDefaultClass(onComplete);
2707+
GetCurrentLoadoutToDefaultClass(onComplete);
27082708
}
27092709

27102710
/// <summary>
27112711
/// Get the loadout for the players default class.
27122712
/// </summary>
27132713
/// <param name="onComplete">onComplete Action for handling the response of type LootLockerGetCurrentLoadoutToDefaultClassResponse</param>
2714-
public static void voidGetCurrentLoadoutToDefaultClass(Action<LootLockerGetCurrentLoadoutToDefaultClassResponse> onComplete)
2714+
public static void GetCurrentLoadoutToDefaultClass(Action<LootLockerGetCurrentLoadoutToDefaultClassResponse> onComplete)
27152715
{
27162716
if (!CheckInitialized())
27172717
{

0 commit comments

Comments
 (0)