mirror of https://github.com/apache/lucene.git
SOLR-14475: Fix deprecation warnings resulting from upgrading commons cli to 1.4
This commit is contained in:
parent
329e7c7bd5
commit
687dd42f57
|
@ -33,6 +33,7 @@ allprojects {
|
||||||
"-Xdoclint:-missing",
|
"-Xdoclint:-missing",
|
||||||
"-Xdoclint:-accessibility",
|
"-Xdoclint:-accessibility",
|
||||||
"-proc:none", // proc:none was added because of LOG4J2-1925 / JDK-8186647
|
"-proc:none", // proc:none was added because of LOG4J2-1925 / JDK-8186647
|
||||||
|
"-Xmaxwarns", "10000",
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1109,7 +1109,7 @@ public class SimScenario implements AutoCloseable {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void close() throws Exception {
|
public void close() throws IOException {
|
||||||
if (cluster != null) {
|
if (cluster != null) {
|
||||||
cluster.close();
|
cluster.close();
|
||||||
cluster = null;
|
cluster = null;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue