ComponentFactory.Krypton.Toolkit.VisualPopupShadow.ClearPaths C# (CSharp) Method

ClearPaths() private method

private ClearPaths ( ) : void
return void
        private void ClearPaths()
        {
            if (_path1 != null)
            {
                _path1.Dispose();
                _path1 = null;
            }

            if (_path2 != null)
            {
                _path2.Dispose();
                _path2 = null;
            }

            if (_path3 != null)
            {
                _path3.Dispose();
                _path3 = null;
            }
        }