Browse Source
Merge pull request #978 from SimonCropp/ExifTagDescriptionAttributeDoesntNeedFields
ExifTagDescriptionAttribute doesnt need fields
af/merge-core
James Jackson-South
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
0 additions and
5 deletions
-
src/ImageSharp/MetaData/Profiles/Exif/ExifTagDescriptionAttribute.cs
|
|
|
@ -12,9 +12,6 @@ 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>
|
|
|
|
@ -22,8 +19,6 @@ namespace SixLabors.ImageSharp.Metadata.Profiles.Exif |
|
|
|
/// <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>
|
|
|
|
|