Browse Source

private QoiMetadata(QoiMetadata other)

pull/2446/head
Anton Firszov 3 years ago
committed by GitHub
parent
commit
eb5c6a703f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/ImageSharp/Formats/Qoi/QoiMetadata.cs

2
src/ImageSharp/Formats/Qoi/QoiMetadata.cs

@ -19,7 +19,7 @@ public class QoiMetadata : IDeepCloneable
/// Initializes a new instance of the <see cref="QoiMetadata"/> class.
/// </summary>
/// <param name="other">The metadata to create an instance from.</param>
public QoiMetadata(QoiMetadata other)
private QoiMetadata(QoiMetadata other)
{
this.Channels = other.Channels;
this.ColorSpace = other.ColorSpace;

Loading…
Cancel
Save