-
Notifications
You must be signed in to change notification settings - Fork 424
Remove the gRPC Authors copyright header from generated swift files #1612
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove the gRPC Authors copyright header from generated swift files #1612
Conversation
Motivation: The common practice of code generators is not to apply their own copyright and license headers to generated files. Instead the output is owned by the owner of the input files and the executor of the code generator. Fixes grpc#1611. Modifications: Removed license header from file generator, test case files, and checks for generated file license headers in the CI sanity license-check. Results: End users of protoc-gen-grpc-swift will not have a Copyright by gRPC Authors added to the generated swift files from their own proto files. Related: The copyright headers could be added back via grpc#1610.
In process of setting up organization account for CLA. |
Thanks @kriswuollett -- looks like this was added way back and no one has questioned it since! Please tag me when you get your CLA sorted and I'll take a look. |
@glbrntt -- Thanks! I'm covered by the CLA now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank @kriswuollett -- I don't suppose you're inclined to tackle #1610 as well?
I may take a look at it this week. It may be just a matter of copying the logic that already exists in the Swift Protobuf project, more or less. |
…rpc#1612) Motivation: The common practice of code generators is not to apply their own copyright and license headers to generated files. Instead the output is owned by the owner of the input files and the executor of the code generator. Fixes grpc#1611. Modifications: Removed license header from file generator, test case files, and checks for generated file license headers in the CI sanity license-check. Results: End users of protoc-gen-grpc-swift will not have a Copyright by gRPC Authors added to the generated swift files from their own proto files. Related: The copyright headers could be added back via grpc#1610.
…rpc#1612) Motivation: The common practice of code generators is not to apply their own copyright and license headers to generated files. Instead the output is owned by the owner of the input files and the executor of the code generator. Fixes grpc#1611. Modifications: Removed license header from file generator, test case files, and checks for generated file license headers in the CI sanity license-check. Results: End users of protoc-gen-grpc-swift will not have a Copyright by gRPC Authors added to the generated swift files from their own proto files. Related: The copyright headers could be added back via grpc#1610.
Motivation:
The common practice of code generators is not to apply their own copyright and license headers to generated files. Instead the output is owned by the owner of the input files and the executor of the code generator.
Fixes #1611.
Modifications:
Removed license header from file generator, test case files, and checks for generated file license headers in the CI sanity license-check.
Results:
End users of protoc-gen-grpc-swift will not have a Copyright by gRPC Authors added to the generated swift files from their own proto files.
Related:
The copyright headers could be added back via #1610.