Sep.Git.Tfs.Commands.Ext.AssertValidTfsPathOrRoot C# (CSharp) Method

AssertValidTfsPathOrRoot() public static method

public static AssertValidTfsPathOrRoot ( this tfsPath ) : void
tfsPath this
return void
        public static void AssertValidTfsPathOrRoot(this string tfsPath)
        {
            if (tfsPath == GitTfsConstants.TfsRoot)
                return;
            AssertValidTfsPath(tfsPath);
        }