using System; using System.Collections.Generic; using Codice.Utils; namespace Unity.PlasticSCM.Editor.AssetsOverlays.Cache { internal static class BuildPathDictionary { internal static Dictionary ForPlatform() { if (PlatformIdentifier.IsWindows()) return new Dictionary( StringComparer.OrdinalIgnoreCase); return new Dictionary(); } } }