Remove empty <returns> xmldoc

This commit is contained in:
Dean Herbert
2021-04-12 17:46:14 +09:00
parent 5d942e92f3
commit b5954a55ad
17 changed files with 0 additions and 18 deletions

View File

@ -37,7 +37,6 @@ namespace osu.Game.Utils
/// Shortcase for: <c>optional.HasValue ? optional.Value : fallback</c>.
/// </remarks>
/// <param name="fallback">The fallback value to return if <see cref="HasValue"/> is <c>false</c>.</param>
/// <returns></returns>
public T GetOr(T fallback) => HasValue ? Value : fallback;
public static implicit operator Optional<T>(T value) => new Optional<T>(value);