You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Refit/GeneratedQueryStringBuilder.cs
+13-51Lines changed: 13 additions & 51 deletions
Original file line number
Diff line number
Diff line change
@@ -255,34 +255,6 @@ public string Build()
255
255
return_text.ToString();
256
256
}
257
257
258
-
#if NET6_0_OR_GREATER
259
-
/// <summary>Formats a span-formattable value into <paramref name="buffer"/>, growing a rented buffer until the value fits.</summary>
260
-
/// <typeparam name="T">The span-formattable value type.</typeparam>
261
-
/// <param name="value">The value to render.</param>
262
-
/// <param name="buffer">The target buffer, replaced with a larger rented buffer when the value overflows it.</param>
263
-
/// <param name="rented">The rented buffer to grow and return to the pool, or null while the stack buffer is in use.</param>
264
-
/// <param name="format">The compile-time format, or null for the default rendering.</param>
265
-
/// <returns>The number of characters written into <paramref name="buffer"/>.</returns>
266
-
[System.Diagnostics.CodeAnalysis.ExcludeFromCodeCoverage]// The grow back-edge only fires for a value larger than the stack buffer; the compiler's loop second-jump stays unreachable in practice.
0 commit comments