commit | 4115e952b5bed2887113af053b63acd3a03c6e19 | [log] [tgz] |
---|---|---|
author | Jens Geyer <jensg@apache.org> | Tue Nov 21 23:00:01 2023 +0100 |
committer | Jens Geyer <Jens-G@users.noreply.github.com> | Thu Nov 23 19:51:35 2023 +0100 |
tree | fcf8a0012a246b7fac5b745b37fb291876cf6e54 | |
parent | a06eedcbfc80c11b751d7cad20e3d9940b2bff67 [diff] [blame] |
THRIFT-5746 Upgrade to net8 Client: netstd Patch: Jens Geyer
diff --git a/lib/netstd/Thrift/Protocol/Utilities/TGuidExtensions.cs b/lib/netstd/Thrift/Protocol/Utilities/TGuidExtensions.cs index 190ddbb..ecc0263 100644 --- a/lib/netstd/Thrift/Protocol/Utilities/TGuidExtensions.cs +++ b/lib/netstd/Thrift/Protocol/Utilities/TGuidExtensions.cs
@@ -42,9 +42,7 @@ private static void SwapBytes(ref byte one, ref byte two) { - var tmp = one; - one = two; - two = tmp; + (two, one) = (one, two); } #region SelfTest