Removes unused files from LuaIDE, Telemetry is not being used, the only ebus called is Initialized, but no "LogEvents are being called.

Signed-off-by: Esteban Papp <81431996+amznestebanpapp@users.noreply.github.com>
This commit is contained in:
Esteban Papp
2021-12-15 11:53:26 -08:00
parent d624381885
commit 92d77c2b4a
11 changed files with 1 additions and 383 deletions
@@ -8,9 +8,6 @@
#include "StandaloneToolsApplication.h"
#include <Source/Telemetry/TelemetryComponent.h>
#include <Source/Telemetry/TelemetryBus.h>
#include <AzCore/std/containers/array.h>
#include <AzCore/UserSettings/UserSettingsComponent.h>
#include <AzFramework/Asset/AssetCatalogComponent.h>
@@ -38,7 +35,6 @@ namespace StandaloneTools
{
LegacyFramework::Application::RegisterCoreComponents();
RegisterComponentDescriptor(Telemetry::TelemetryComponent::CreateDescriptor());
RegisterComponentDescriptor(LegacyFramework::IPCComponent::CreateDescriptor());
RegisterComponentDescriptor(AZ::UserSettingsComponent::CreateDescriptor());
@@ -62,7 +58,6 @@ namespace StandaloneTools
EnsureComponentCreated(AZ::StreamerComponent::RTTI_Type());
EnsureComponentCreated(AZ::JobManagerComponent::RTTI_Type());
EnsureComponentCreated(Telemetry::TelemetryComponent::RTTI_Type());
EnsureComponentCreated(AzFramework::TargetManagementComponent::RTTI_Type());
EnsureComponentCreated(LegacyFramework::IPCComponent::RTTI_Type());
@@ -90,14 +85,8 @@ namespace StandaloneTools
void BaseApplication::OnApplicationEntityActivated()
{
const int k_processIntervalInSecs = 2;
const bool doSDKInitShutdown = true;
EBUS_EVENT(Telemetry::TelemetryEventsBus, Initialize, "O3DE_IDE", k_processIntervalInSecs, doSDKInitShutdown);
bool launched = LaunchDiscoveryService();
[[maybe_unused]] bool launched = LaunchDiscoveryService();
AZ_Warning("EditorApplication", launched, "Could not launch GridHub; Only replay is available.");
(void)launched;
}
void BaseApplication::SetSettingsRegistrySpecializations(AZ::SettingsRegistryInterface::Specializations& specializations)