From 90c01c1e80214cf0a3b52fcb0227b82dadb11f23 Mon Sep 17 00:00:00 2001 From: Robert Muir Date: Sat, 14 Oct 2023 19:54:47 -0400 Subject: [PATCH] tidy --- .../internal/vectorization/PanamaVectorUtilSupport.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lucene/core/src/java20/org/apache/lucene/internal/vectorization/PanamaVectorUtilSupport.java b/lucene/core/src/java20/org/apache/lucene/internal/vectorization/PanamaVectorUtilSupport.java index 75c775d7286..915d7e1a49b 100644 --- a/lucene/core/src/java20/org/apache/lucene/internal/vectorization/PanamaVectorUtilSupport.java +++ b/lucene/core/src/java20/org/apache/lucene/internal/vectorization/PanamaVectorUtilSupport.java @@ -83,7 +83,9 @@ final class PanamaVectorUtilSupport implements VectorUtilSupport { boolean hasFastIntegerVectors = isAMD64withoutAVX2 == false; try { hasFastIntegerVectors = - Boolean.parseBoolean(System.getProperty("tests.forceintegervectors", Boolean.toString(hasFastIntegerVectors))); + Boolean.parseBoolean( + System.getProperty( + "tests.forceintegervectors", Boolean.toString(hasFastIntegerVectors))); } catch (SecurityException ignored) { } HAS_FAST_INTEGER_VECTORS = hasFastIntegerVectors;