Remove the ability to specify a filename in ReplaceFile

This commit is contained in:
Dean Herbert
2021-11-29 18:08:02 +09:00
parent 448b2d1190
commit a7e4e7be3a
4 changed files with 10 additions and 13 deletions

View File

@ -15,8 +15,7 @@ namespace osu.Game.Database
/// <param name="model">The item to operate on.</param>
/// <param name="file">The existing file to be replaced.</param>
/// <param name="contents">The new file contents.</param>
/// <param name="filename">An optional filename for the new file. Will use the previous filename if not specified.</param>
void ReplaceFile(TModel model, TFileModel file, Stream contents, string filename = null);
void ReplaceFile(TModel model, TFileModel file, Stream contents);
/// <summary>
/// Delete an existing file.