rmuir commented on PR #14939: URL: https://github.com/apache/lucene/pull/14939#issuecomment-3065341301
I think Uwe needs his espresso first. This is what this PR does. It prevents UNCHECKED (meaning if-statement) use of specific vector APi constructs. fails: ``` byteVector.compress(mask); ``` passes: ```java if (Constants.HAS_FAST_COMPRESS) { byteVector.compress(mask); } ``` <img width="954" height="195" alt="Screen_Shot_2025-07-12_at_09 02 52" src="https://github.com/user-attachments/assets/e71187a7-864a-4f4c-9f3e-2285dedba7a8" /> -- 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...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org