aboutsummaryrefslogtreecommitdiff
path: root/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs')
-rw-r--r--csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs b/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs
index de250899..6dabfcdb 100644
--- a/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs
+++ b/csharp/src/ProtocolBuffersLite.Test/TestProtos/UnittestImportPublicLite.cs
@@ -92,7 +92,9 @@ namespace Google.ProtocolBuffers.TestProtos {
#region Lite runtime methods
public override int GetHashCode() {
int hash = GetType().GetHashCode();
- if (hasE) hash ^= e_.GetHashCode();
+ if (hasE) {
+ hash ^= e_.GetHashCode();
+ }
return hash;
}