UnityEditor.TagManagerInspector.CheckForRemovedTags C# (CSharp) Method

CheckForRemovedTags() private method

private CheckForRemovedTags ( ) : void
return void
        private void CheckForRemovedTags()
        {
            for (int i = 0; i < this.m_Tags.arraySize; i++)
            {
                if (string.IsNullOrEmpty(this.m_Tags.GetArrayElementAtIndex(i).stringValue))
                {
                    this.m_HaveRemovedTag = true;
                }
            }
        }