diff --git a/Editor/Objects/Report.cs b/Editor/Objects/Report.cs index 278955a..5b68f9f 100644 --- a/Editor/Objects/Report.cs +++ b/Editor/Objects/Report.cs @@ -1,8 +1,8 @@ using System; using System.Collections.Generic; +using UnityEditor; using UnityEngine; - namespace Module.ProjectValidator.Editor { internal sealed class Report @@ -64,7 +64,7 @@ namespace Module.ProjectValidator.Editor public bool TryGetSeverityFor(string guid, out MappingEntry mapping) { - if (UnityEngine.GUID.TryParse(guid, out var assetGuid) && _assetToSeverityMapping.TryGetValue(assetGuid, out mapping)) + if (GUID.TryParse(guid, out var assetGuid) && _assetToSeverityMapping.TryGetValue(assetGuid, out mapping)) return true; mapping = new MappingEntry();