From 99a81d297c6ddc5aaab86273b4a98c25bec2e833 Mon Sep 17 00:00:00 2001 From: Jon Skeet Date: Tue, 4 Aug 2015 07:10:36 +0100 Subject: Fix build warnings around unused variables --- csharp/src/Google.Protobuf/JsonFormatter.cs | 1 - 1 file changed, 1 deletion(-) (limited to 'csharp/src/Google.Protobuf') diff --git a/csharp/src/Google.Protobuf/JsonFormatter.cs b/csharp/src/Google.Protobuf/JsonFormatter.cs index 999e106c..223aa027 100644 --- a/csharp/src/Google.Protobuf/JsonFormatter.cs +++ b/csharp/src/Google.Protobuf/JsonFormatter.cs @@ -739,7 +739,6 @@ namespace Google.Protobuf private const string Hex = "0123456789abcdef"; private static void HexEncodeUtf16CodeUnit(StringBuilder builder, char c) { - uint utf16 = c; builder.Append("\\u"); builder.Append(Hex[(c >> 12) & 0xf]); builder.Append(Hex[(c >> 8) & 0xf]); -- cgit v1.2.3