J-Exodus opened a new pull request, #953: URL: https://github.com/apache/lucenenet/pull/953
Conversion to native Array.Empty<T>() Fixes #916 ## Description This is my first real PR. Always happy for feedback. - Removed ```Lucene.Net.Support.Arrays.Empty<T>()``` and ```FEATURE_ARRAYEMPTY```. - Converted all ```Arrays.Empty<T>()``` to ```Array.Empty<T>()``` and added ```using System;``` where required. - Removed ```using Lucene.Net.Support;``` statements that were no longer required. - In ```FieldConparitor.cs``` converted ```MISSING_BTYES``` and ```NON_MISSING_BYTES``` to ```Array.Empty<bytes>()``` Conducted unit tests - all passed. Unsure correct format to attach results. Unfortunately, my linter has picked up the extra white spaces in the files I updated, which are marked as individual changes. If this effects the ability to review and merge this PR, please let me know and I'll redo it all with the linter off. -- 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: dev-unsubscr...@lucenenet.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org