Advertisement
Guest User

Untitled

a guest
Dec 6th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. diff -u3 -r -w Compare-NET-Objects/IgnoreOrderTypes/IgnoreOrderLogic.cs Compare-Net-Objects-new/Compare-NET-Objects/IgnoreOrderTypes/IgnoreOrderLogic.cs
  2. --- Compare-NET-Objects/IgnoreOrderTypes/IgnoreOrderLogic.cs 2016-08-31 14:28:07.000000000 +0200
  3. +++ Compare-NET-Objects/IgnoreOrderTypes/IgnoreOrderLogic.cs 2016-12-01 16:23:36.900541200 +0100
  4. @@ -203,8 +203,8 @@
  5. Object1Value = reverseCompare ? "(null)" : NiceString(enumerator1.Current),
  6. Object2Value = reverseCompare ? NiceString(enumerator1.Current) : "(null)",
  7. ChildPropertyName = "Item",
  8. - Object1 = reverseCompare ? null : new WeakReference(enumerator1),
  9. - Object2 = reverseCompare ? new WeakReference(enumerator1) : null
  10. + Object1 = reverseCompare ? null : new WeakReference(enumerator1.Current),
  11. + Object2 = reverseCompare ? new WeakReference(enumerator1.Current) : null
  12. };
  13.  
  14. AddDifference(parms.Result, difference);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement