|
|
@ -87,7 +87,7 @@ namespace SixLabors.ImageSharp.MetaData.Profiles.Exif |
|
|
/// <returns>The <see cref="bool"/></returns>
|
|
|
/// <returns>The <see cref="bool"/></returns>
|
|
|
public static bool operator ==(SignedRational left, SignedRational right) |
|
|
public static bool operator ==(SignedRational left, SignedRational right) |
|
|
{ |
|
|
{ |
|
|
return SignedRational.Equals(left, right); |
|
|
return left.Equals(right); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
@ -98,7 +98,7 @@ namespace SixLabors.ImageSharp.MetaData.Profiles.Exif |
|
|
/// <returns>The <see cref="bool"/></returns>
|
|
|
/// <returns>The <see cref="bool"/></returns>
|
|
|
public static bool operator !=(SignedRational left, SignedRational right) |
|
|
public static bool operator !=(SignedRational left, SignedRational right) |
|
|
{ |
|
|
{ |
|
|
return !SignedRational.Equals(left, right); |
|
|
return !left.Equals(right); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
/// <summary>
|
|
|
|