Skip to content

Commit e7c3f52

Browse files
committed
minor code style issues in the query validator
1 parent b9274f5 commit e7c3f52

File tree

3 files changed

+128
-160
lines changed

3 files changed

+128
-160
lines changed

tooling/metamodel-generator/src/main/java/org/hibernate/processor/validation/MockEntityPersister.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public MockEntityPersister getRootEntityPersister() {
149149

150150
@Override
151151
public Set<String> getSubclassEntityNames() {
152-
Set<String> names = new HashSet<>();
152+
final Set<String> names = new HashSet<>();
153153
names.add( entityName );
154154
for (MockEntityPersister persister : factory.getMockEntityPersisters()) {
155155
if (persister.isSubclassPersister(this)) {

0 commit comments

Comments
 (0)