Internal change

PiperOrigin-RevId: 485024056
pull/10846/head
Protobuf Team Bot 2 years ago committed by Joshua Haberman
parent 700fbde7ab
commit 0115668cf3
  1. 4
      src/google/protobuf/compiler/objectivec/field.cc

@ -329,8 +329,7 @@ void SingleFieldGenerator::GeneratePropertyDeclaration(
// clang-format off
printer->Print(
variables_,
"@property(nonatomic, readwrite) $property_type$ $name$$deprecated_attribute$;\n"
"\n");
"@property(nonatomic, readwrite) $property_type$ $name$$deprecated_attribute$;\n");
// clang-format on
if (WantsHasProperty()) {
// clang-format off
@ -339,6 +338,7 @@ void SingleFieldGenerator::GeneratePropertyDeclaration(
"@property(nonatomic, readwrite) BOOL has$capitalized_name$$deprecated_attribute$;\n");
// clang-format on
}
printer->Print("\n");
}
void SingleFieldGenerator::GeneratePropertyImplementation(

Loading…
Cancel
Save