Skip to content

Commit 644fe22

Browse files
Merge pull request #978 from SimonCropp/ExifTagDescriptionAttributeDoesntNeedFields
ExifTagDescriptionAttribute doesnt need fields
2 parents fbfc452 + af28443 commit 644fe22

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/ImageSharp/MetaData/Profiles/Exif/ExifTagDescriptionAttribute.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,13 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif
1212
[AttributeUsage(AttributeTargets.Field, AllowMultiple = true)]
1313
internal sealed class ExifTagDescriptionAttribute : Attribute
1414
{
15-
private readonly object value;
16-
private readonly string description;
17-
1815
/// <summary>
1916
/// Initializes a new instance of the <see cref="ExifTagDescriptionAttribute"/> class.
2017
/// </summary>
2118
/// <param name="value">The value of the exif tag.</param>
2219
/// <param name="description">The description for the value of the exif tag.</param>
2320
public ExifTagDescriptionAttribute(object value, string description)
2421
{
25-
this.value = value;
26-
this.description = description;
2722
}
2823

2924
/// <summary>

0 commit comments

Comments
 (0)