Skip to content

Commit

Permalink
Merge pull request #978 from SimonCropp/ExifTagDescriptionAttributeDo…
Browse files Browse the repository at this point in the history
…esntNeedFields

ExifTagDescriptionAttribute doesnt need fields
  • Loading branch information
JimBobSquarePants authored Sep 17, 2019
2 parents fbfc452 + af28443 commit 644fe22
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,13 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true)]
internal sealed class ExifTagDescriptionAttribute : Attribute
{
private readonly object value;
private readonly string description;

/// <summary>
/// Initializes a new instance of the <see cref="ExifTagDescriptionAttribute"/> class.
/// </summary>
/// <param name="value">The value of the exif tag.</param>
/// <param name="description">The description for the value of the exif tag.</param>
public ExifTagDescriptionAttribute(object value, string description)
{
this.value = value;
this.description = description;
}

/// <summary>
Expand Down

0 comments on commit 644fe22

Please sign in to comment.