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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user