Open.Core.PackageBase.FormatUrl C# (CSharp) Method

FormatUrl() private static method

private static FormatUrl ( string url ) : string
url string
return string
        private static string FormatUrl(string url)
        {
            url = Helper.String.HasValue(url) ? url.Trim() : null;
            return url;
        }