Skip to content

Commit 3376d5d

Browse files
Update ExifTag.cs
1 parent 17e9d99 commit 3376d5d

File tree

1 file changed

+1
-1
lines changed
  • src/ImageSharp/Metadata/Profiles/Exif/Tags

1 file changed

+1
-1
lines changed

src/ImageSharp/Metadata/Profiles/Exif/Tags/ExifTag.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public abstract partial class ExifTag : IEquatable<ExifTag>
3030
/// </summary>
3131
/// <param name="left">The first <see cref="ExifTag"/> to compare.</param>
3232
/// <param name="right"> The second <see cref="ExifTag"/> to compare.</param>
33-
public static bool operator !=(ExifTag left, ExifTag right) => !(left == right);
33+
public static bool operator !=(ExifTag? left, ExifTag? right) => !(left == right);
3434

3535
/// <inheritdoc/>
3636
public override bool Equals(object? obj)

0 commit comments

Comments
 (0)