[ https://issues.apache.org/jira/browse/AVRO-3368?focusedWorklogId=721509&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-721509 ]
ASF GitHub Bot logged work on AVRO-3368: ---------------------------------------- Author: ASF GitHub Bot Created on: 05/Feb/22 16:42 Start Date: 05/Feb/22 16:42 Worklog Time Spent: 10m Work Description: zcsizmadia edited a comment on pull request #1519: URL: https://github.com/apache/avro/pull/1519#issuecomment-1030655041 @KyleSchoonover @mhowlett Can we start a conversation about how we can make this lib more usable and maintainable by the confluent kafka lib? I am using both of those libs in my work, so I think identifying those isueus would be a great start and create the tickets for it so people can start contributing to them. -- 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: issues-unsubscr...@avro.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 721509) Time Spent: 2h (was: 1h 50m) > Remove accessible field value from GenericFixed > ------------------------------------------------ > > Key: AVRO-3368 > URL: https://issues.apache.org/jira/browse/AVRO-3368 > Project: Apache Avro > Issue Type: Improvement > Components: csharp > Affects Versions: 1.11.0 > Reporter: Kyle Schoonover > Priority: Major > Labels: pull-request-available > Time Spent: 2h > Remaining Estimate: 0h > > Update: > {code:java} > protected readonly byte[] value; {code} > to: > {code:java} > [Obsolete("Will deprecate in future release use Value property")] > protected byte[] value > { > get { return _value; } > } > /// <summary> > /// Value of this fixed schema. > /// </summary> > private readonly byte[] _value; {code} > Additional changes will need to be made to change everything from value to > _value -- This message was sent by Atlassian Jira (v8.20.1#820001)