Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit be13a64

Browse files
committed
Added a missing type declaration.
1 parent 16d9111 commit be13a64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/rabbitmq_auth_backend_webapi_dotnet/Controllers/AuthController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public class AuthController : ApiController
1212
{
1313
// Note: the following is necessary to ensure that no
1414
// BOM is part of the response
15-
private static readonly encoding = new UTF8Encoding(false);
15+
private static readonly UTF8Encoding encoding = new UTF8Encoding(false);
1616

1717
[Route("user")]
1818
[HttpPost]

0 commit comments

Comments
 (0)