clemensv opened a new pull request, #2783:
URL: https://github.com/apache/avro/pull/2783
## What is the purpose of the change
This eliminates a blocking issue where code-gen throws while generating code
for this enum:
```json
{
"type": "enum",
"symbols": [
"string",
"integer",
"float",
"boolean",
"list",
"dict",
"regex"
],
"name": "type",
"namespace": "com.example"
}
```
## Verifying this change
This change is a trivial rework without any test coverage. It eliminates an
apparent misunderstanding of C# syntax. The above now correctly yields
```csharp
public enum type
{
@string,
integer,
@float,
boolean,
list,
dict,
regex,
}
```
## Documentation
- Does this pull request introduce a new feature? no
- If yes, how is the feature documented? not applicable
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]