uschindler commented on code in PR #12417: URL: https://github.com/apache/lucene/pull/12417#discussion_r1264698044
########## lucene/core/src/java20/org/apache/lucene/internal/vectorization/PanamaVectorizationProvider.java: ########## @@ -82,4 +82,9 @@ private static <T> T doPrivileged(PrivilegedAction<T> action) { public VectorUtilSupport getVectorUtilSupport() { return vectorUtilSupport; } + + @Override + public ForUtil90 newForUtil90() { + return new PanamaForUtil90(); Review Comment: To apply a fix about @rmuir comment, please change this line to: ```java return hasFastIntegerVectors ? new PanamaForUtil90() : new DefaultForUtil90(); -- 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