aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs
diff options
context:
space:
mode:
authorJan Tattermusch <jtattermusch@google.com>2015-05-12 22:00:38 -0700
committerJan Tattermusch <jtattermusch@google.com>2015-05-12 22:00:38 -0700
commit881995352dfedc23ed62f45d4acc18f948f1785a (patch)
tree0d73969bc424cb990b725f41920f98dfa49a0626 /csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs
parent4083104aa4862e22aa5addbfaaa3a49ebbd2c4a0 (diff)
downloadprotobuf-881995352dfedc23ed62f45d4acc18f948f1785a.tar.gz
protobuf-881995352dfedc23ed62f45d4acc18f948f1785a.tar.bz2
protobuf-881995352dfedc23ed62f45d4acc18f948f1785a.zip
regenerated UnittestImportLite.cs
Diffstat (limited to 'csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs')
-rw-r--r--csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs b/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportLite.cs
index b0ad3155..1fee16e0 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;
}