Merge pull request #8868 from alanorth/upgrade-checkstyle

Upgrade checkstyle
This commit is contained in:
Tim Donohue
2024-11-08 15:05:43 -06:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -313,7 +313,7 @@ public abstract class AbstractHibernateDAO<T> implements GenericDAO<T> {
org.hibernate.query.Query hquery = query.unwrap(org.hibernate.query.Query.class);
Stream<T> stream = hquery.stream();
Iterator<T> iter = stream.iterator();
return new AbstractIterator<T> () {
return new AbstractIterator<T>() {
@Override
protected T computeNext() {
return iter.hasNext() ? iter.next() : endOfData();

View File

@@ -295,7 +295,7 @@
<dependency>
<groupId>com.puppycrawl.tools</groupId>
<artifactId>checkstyle</artifactId>
<version>8.45.1</version>
<version>10.19.0</version>
</dependency>
</dependencies>
</plugin>