Selaa lähdekoodia

[csharp] Removed #if UNITY_EDITOR guards around linq code from spine-csharp code again (OrderedDictionary).

Harald Csaszar 6 vuotta sitten
vanhempi
commit
73dff36623
1 muutettua tiedostoa jossa 0 lisäystä ja 5 poistoa
  1. 0 5
      spine-csharp/src/Collections/OrderedDictionary.cs

+ 0 - 5
spine-csharp/src/Collections/OrderedDictionary.cs

@@ -36,10 +36,7 @@ using System.Collections;
 using System.Collections.Generic;
 using System.ComponentModel;
 using System.Diagnostics;
-
-#if UNITY_EDITOR
 using System.Linq;
-#endif
 
 namespace Spine.Collections
 {
@@ -566,7 +563,6 @@ namespace Spine.Collections
 		}
 	}
 
-	#if UNITY_EDITOR
 	internal class OrderedDictionaryDebugView<TKey, TValue>
 	{
 		private readonly OrderedDictionary<TKey, TValue> dictionary;
@@ -582,7 +578,6 @@ namespace Spine.Collections
 			}
 		}
 	}
-	#endif
 
 	/// <summary>
 	/// Provides extensions methods for constructing instances of <see cref="OrderedDictionary{TKey, TValue}"/>.