From 881995352dfedc23ed62f45d4acc18f948f1785a Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Tue, 12 May 2015 22:00:38 -0700 Subject: [PATCH] regenerated UnittestImportLite.cs --- .../ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs b/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs index b0ad3155f..1fee16e03 100644 --- a/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs +++ b/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs @@ -101,7 +101,9 @@ namespace Google.ProtocolBuffers.TestProtos { #region Lite runtime methods public override int GetHashCode() { int hash = GetType().GetHashCode(); - if (hasD) hash ^= d_.GetHashCode(); + if (hasD) { + hash ^= d_.GetHashCode(); + } return hash; }