Fix indenting

This commit is contained in:
Matt G. Ellis
2014-11-16 17:38:48 -08:00
parent 599881acbe
commit c994fffd18
+4 -4
View File
@@ -1356,13 +1356,13 @@ namespace Octokit
if (isValid && Uri.TryCreate(str, UriKind.RelativeOrAbsolute, out result))
return result;
return null;
return null;
}
if (type == typeof(string))
return str;
if (type == typeof(string))
return str;
return Convert.ChangeType(str, type, CultureInfo.InvariantCulture);
return Convert.ChangeType(str, type, CultureInfo.InvariantCulture);
}
else
{