aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/google/protobuf/compiler/csharp/csharp_message.cc
diff options
context:
space:
mode:
authorGravatar Andrew Spiering <aspiering@gmail.com>2017-01-11 11:18:53 -0800
committerGravatar Andrew Spiering <aspiering@gmail.com>2017-01-11 11:18:53 -0800
commit75ac3973eff1eecd0506f87bf94a51d57b3cc072 (patch)
treeebf497229eb5ff082e777eeaea73cb716c890d10 /src/google/protobuf/compiler/csharp/csharp_message.cc
parenteffcb132e1c537ad0b21338603358d42d7e31803 (diff)
Fixing code formatting issues
Diffstat (limited to 'src/google/protobuf/compiler/csharp/csharp_message.cc')
-rw-r--r--src/google/protobuf/compiler/csharp/csharp_message.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/google/protobuf/compiler/csharp/csharp_message.cc b/src/google/protobuf/compiler/csharp/csharp_message.cc
index 78e076c8..b0cc6694 100644
--- a/src/google/protobuf/compiler/csharp/csharp_message.cc
+++ b/src/google/protobuf/compiler/csharp/csharp_message.cc
@@ -99,8 +99,7 @@ const std::vector<const FieldDescriptor*>& MessageGenerator::fields_by_number()
}
void MessageGenerator::AddDeprecatedFlag(io::Printer* printer) {
- if (descriptor_->options().deprecated())
- {
+ if (descriptor_->options().deprecated()) {
printer->Print("[global::System.ObsoleteAttribute]\n");
}
}