1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 20:32:55 +08:00

Add note about null return

This commit is contained in:
Dean Herbert 2018-08-25 14:51:42 +09:00
parent 8204d3292e
commit 5c7ff31675

View File

@ -390,7 +390,7 @@ namespace osu.Game.Database
/// Actual expensive population should be done in <see cref="Populate"/>; this should just prepare for duplicate checking. /// Actual expensive population should be done in <see cref="Populate"/>; this should just prepare for duplicate checking.
/// </summary> /// </summary>
/// <param name="archive">The archive to create the model for.</param> /// <param name="archive">The archive to create the model for.</param>
/// <returns>A model populated with minimal information.</returns> /// <returns>A model populated with minimal information. Returning a null will abort importing silently.</returns>
protected abstract TModel CreateModel(ArchiveReader archive); protected abstract TModel CreateModel(ArchiveReader archive);
/// <summary> /// <summary>