remove possible deprecated options from type brand output

This commit is contained in:
Daniel Rönnkvist 2023-02-11 22:06:59 +01:00
parent c20ddd3d2b
commit ad298bc7c8
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ const typeBrandHint = `This field is a type brand and is not populated at runtim
https://github.com/grpc/grpc-node/pull/2281`;
function formatTypeBrand(formatter: TextFormatter, messageType: Protobuf.Type) {
formatComment(formatter, typeBrandHint, messageType.options);
formatComment(formatter, typeBrandHint);
formatter.writeLine(`__type: '${messageType.fullName}'`);
}