File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/ImageSharp/Metadata/Profiles/Exif/Tags Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,14 +23,14 @@ public abstract partial class ExifTag : IEquatable<ExifTag>
23
23
/// </summary>
24
24
/// <param name="left">The first <see cref="ExifTag"/> to compare.</param>
25
25
/// <param name="right"> The second <see cref="ExifTag"/> to compare.</param>
26
- public static bool operator == ( ExifTag left , ExifTag right ) => left ? . Equals ( right ) == true ;
26
+ public static bool operator == ( ExifTag ? left , ExifTag ? right ) => left ? . Equals ( right ) == true ;
27
27
28
28
/// <summary>
29
29
/// Determines whether the specified <see cref="ExifTag"/> instances are not considered equal.
30
30
/// </summary>
31
31
/// <param name="left">The first <see cref="ExifTag"/> to compare.</param>
32
32
/// <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 ) ;
34
34
35
35
/// <inheritdoc/>
36
36
public override bool Equals ( object ? obj )
You can’t perform that action at this time.
0 commit comments