Skip to content

Commit 9bc9532

Browse files
Update FormattedImage.cs
1 parent 15dfa53 commit 9bc9532

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ImageSharp.Web/FormattedImage.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,12 @@ public static async Task<FormattedImage> LoadAsync(Configuration configuration,
111111
/// <param name="destination">The destination stream.</param>
112112
public void Save(Stream destination) => this.Image.Save(destination, this.encoder);
113113

114+
/// <summary>
114115
/// Saves image to the specified destination stream.
115116
/// </summary>
116117
/// <param name="destination">The destination stream.</param>
117118
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
118-
public async Task SaveAsync(Stream destination) => await this.Image.SaveAsync(destination, this.encoder);
119+
public Task SaveAsync(Stream destination) => this.Image.SaveAsync(destination, this.encoder);
119120

120121
/// <summary>
121122
/// Returns a value indicating whether the source image contains EXIF metadata for <see cref="ExifTag.Orientation"/>

0 commit comments

Comments
 (0)