asmrobot
2019-10-29 f25f89101a98ad815c0ae2d25e1a8dc35d53a5dd
src/RichCreator.Utility/Structs/ZTRectangle.cs
@@ -60,7 +60,7 @@
        public static bool operator ==(ZTRectangle a, ZTRectangle b)
        {
            if (a.Start == b.Start && a.End == b.End)
            if (a.Start .Equals( b.Start) && a.End.Equals( b.End))
            {
                return true;
            }
@@ -69,7 +69,7 @@
        public static bool operator !=(ZTRectangle a, ZTRectangle b)
        {
            if (a.Start != b.Start || a.End != b.End)
            if (!a.Start.Equals( b.Start) || !a.End.Equals(b.End))
            {
                return true;
            }
@@ -85,7 +85,7 @@
        #region IEquatable
        public bool Equals(ZTRectangle other)
        {
            if (this.Start == other.Start && this.End == other.End)
            if (this.Start.Equals(other.Start) && this.End.Equals(other.End))
            {
                return true;
            }