updated nuget

This commit is contained in:
Luke Pulverenti
2013-05-12 16:30:23 -04:00
parent 5c873d3ed1
commit 2bfcf89abf
10 changed files with 415 additions and 14 deletions

View File

@@ -12,7 +12,7 @@ namespace MediaBrowser.Model.Extensions
/// <param name="str">The STR.</param>
/// <param name="def">The def.</param>
/// <returns>System.String.</returns>
public static string ValueOrDefault(this string str, string def = "")
internal static string ValueOrDefault(this string str, string def = "")
{
return string.IsNullOrEmpty(str) ? def : str;
}