Fix checkstyle violation in ESTestCase
This commit fixes a line-length violation in ESTestCase.
This commit is contained in:
parent
22e931ed72
commit
4b4c88496a
|
@ -426,7 +426,8 @@ public abstract class ESTestCase extends LuceneTestCase {
|
|||
filteredWarnings = filteredWarnings
|
||||
.stream()
|
||||
.filter(k -> k.contains(
|
||||
"no-jdk distributions that do not bundle a JDK are deprecated and will be removed in a future release") == false)
|
||||
"no-jdk distributions that do not bundle a JDK are deprecated and will be removed in a future release"
|
||||
) == false)
|
||||
.collect(Collectors.toList());
|
||||
}
|
||||
assertThat("unexpected warning headers", filteredWarnings, empty());
|
||||
|
|
Loading…
Reference in New Issue