Fix for Jenkins Validation: removing tabs and removing unwanted spaces.

This commit is contained in:
Gene Walters
2021-06-20 20:51:59 -07:00
parent b9dd7a1ecd
commit 526a0f1289
@@ -70,7 +70,7 @@ namespace Multiplayer
}
return netBindComponent->IsNetEntityRoleAuthority();
})
->Method("IsNetEntityRoleAutonomous", [](AZ::EntityId id) -> bool {
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
if (!entity)
@@ -87,7 +87,7 @@ namespace Multiplayer
}
return netBindComponent->IsNetEntityRoleAutonomous();
})
->Method("IsNetEntityRoleClient", [](AZ::EntityId id) -> bool {
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
if (!entity)
@@ -104,8 +104,8 @@ namespace Multiplayer
}
return netBindComponent->IsNetEntityRoleClient();
})
->Method("IsNetEntityRoleServer", [](AZ::EntityId id) -> bool {
->Method("IsNetEntityRoleServer", [](AZ::EntityId id) -> bool {
AZ::Entity* entity = AZ::Interface<AZ::ComponentApplicationRequests>::Get()->FindEntity(id);
if (!entity)
{