Fix checkstyle violation in ESTestCase

This commit fixes a line-length violation in ESTestCase.
This commit is contained in:
Jason Tedor 2020-10-28 10:44:33 -04:00
parent 22e931ed72
commit 4b4c88496a
No known key found for this signature in database
GPG Key ID: FA89F05560F16BC5
1 changed files with 2 additions and 1 deletions

View File

@ -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());