Completes: U4-5808 All old legacy 'datatypes' since they are not supported or used

This commit is contained in:
Shannon
2014-11-14 18:22:31 +11:00
parent 07fdd81801
commit 4fce47cff3
176 changed files with 34 additions and 19994 deletions

View File

@@ -206,7 +206,7 @@ namespace Umbraco.Core
return Attempt<object>.Fail();
}
private static Nullable<Attempt<object>> TryConvertToFromString(this string input, Type destinationType)
private static Attempt<object>? TryConvertToFromString(this string input, Type destinationType)
{
if (destinationType == typeof(string))
return Attempt<object>.Succeed(input);