Remove unnecessary else clause.

Closes: #3368
This commit is contained in:
chs98412
2024-02-14 22:19:43 +09:00
committed by Christoph Strobl
parent ff7c61427d
commit fbf831c8c1

View File

@@ -171,9 +171,9 @@ public abstract class AbstractJpaQuery implements RepositoryQuery {
if (method.isModifyingQuery()) {
return new ModifyingExecution(method, em);
} else {
return new SingleEntityExecution();
}
return new SingleEntityExecution();
}
/**