mirror of https://github.com/apache/lucene.git
tidy
This commit is contained in:
parent
94619e00e0
commit
90c01c1e80
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue