@@ -313,7 +313,7 @@ void SingleFieldGenerator::GeneratePropertyDeclaration(
313
313
io::Printer* printer) const {
314
314
auto vars = printer->WithVars (variables_);
315
315
printer->Emit (
316
- {{" comments" , [&] { EmitCommentsString (printer, descriptor_, true ); }}},
316
+ {{" comments" , [&] { EmitCommentsString (printer, descriptor_); }}},
317
317
R"objc(
318
318
$comments$
319
319
@property(nonatomic, readwrite) $property_type$ $name$$deprecated_attribute$;
@@ -366,7 +366,7 @@ void ObjCObjFieldGenerator::GeneratePropertyDeclaration(
366
366
367
367
auto vars = printer->WithVars (variables_);
368
368
printer->Emit (
369
- {{" comments" , [&] { EmitCommentsString (printer, descriptor_, true ); }}},
369
+ {{" comments" , [&] { EmitCommentsString (printer, descriptor_); }}},
370
370
R"objc(
371
371
$comments$
372
372
@property(nonatomic, readwrite, $property_storage_attribute$, null_resettable) $property_type$ *$name$$storage_attribute$$deprecated_attribute$;
@@ -420,7 +420,7 @@ void RepeatedFieldGenerator::GeneratePropertyDeclaration(
420
420
421
421
auto vars = printer->WithVars (variables_);
422
422
printer->Emit (
423
- {{" comments" , [&] { EmitCommentsString (printer, descriptor_, true ); }},
423
+ {{" comments" , [&] { EmitCommentsString (printer, descriptor_); }},
424
424
{" array_comment" , [&] { EmitArrayComment (printer); }}},
425
425
R"objc(
426
426
$comments$
0 commit comments