Bharathi-Kanna opened a new pull request, #16276: URL: https://github.com/apache/lucene/pull/16276
### Description Remove overdue deprecated sort optimization toggle methods from `SortField`. These four methods were marked `@Deprecated // Remove in Lucene 10` for backward compatibility with 8.x indices that might have inconsistent data across fields. Since we are now on Lucene 11, they are past due for removal. ### Changes **Removed from `SortField.java`:** - `setOptimizeSortWithIndexedData(boolean)` - `getOptimizeSortWithIndexedData()` - `setOptimizeSortWithPoints(boolean)` - `getOptimizeSortWithPoints()` ### Rationale Sort optimization is unconditionally enabled (the default was already `true`). The toggle only existed to let users work around inconsistencies in Lucene 8.x indices. Those indices are no longer supported in Lucene 11. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
