From 363cc28810d42f9463b5bdf9f782bdaa8ded0622 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Thu, 7 Nov 2024 23:43:21 +0100 Subject: [PATCH] Remove unused code --- Assets/Scripts/EndpointLoader.cs | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/Assets/Scripts/EndpointLoader.cs b/Assets/Scripts/EndpointLoader.cs index 75a22d2..4ae17d4 100644 --- a/Assets/Scripts/EndpointLoader.cs +++ b/Assets/Scripts/EndpointLoader.cs @@ -89,26 +89,6 @@ public class EndpointLoader : MonoBehaviour return 0.8f; } - /* - public void SpawnItem(string url, int position) - { - if (position < 0 || position > instantiatedItems.Count) - { - Debug.LogError("Invalid position"); - return; - } - - if (position == instantiatedItems.Count) - { - SpawnItem(url); - return; - } - - var webView = instantiatedItems[position].GetComponentInChildren(); - webView.Load(url); - } - */ - public void SpawnItem(string url) { if (dynamicItem != null) @@ -261,13 +241,6 @@ public class EndpointLoader : MonoBehaviour Debug.LogWarning($"Endpoint URL is null for endpoint"); continue; } - /* - if (instantiatedItems.Exists(item => item.GetComponentInChildren().CurrentURL?.ToString() == endpoint.url)) - { - Debug.LogWarning($"Endpoint {endpoint.url} already exists"); - continue; - } - */ SpawnItem(endpoint.url); } }