We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4330fb7 commit e991a42Copy full SHA for e991a42
tooling/metamodel-generator/src/main/java/org/hibernate/processor/annotation/CriteriaDeleteMethod.java
@@ -86,11 +86,11 @@ String specificationType() {
86
87
private void execute(StringBuilder declaration) {
88
declaration
89
- .append("\t\t\t.executeUpdate()");
90
- if ( isReactive() ) {
91
- if ( fullReturnType.endsWith("<java.lang.Void>") ) {}
+ .append(".executeUpdate()");
+ if ( isReactive()
+ && fullReturnType.endsWith("<java.lang.Void>") ) {
92
93
- .append(".replaceWithVoid()");
+ .append( ".replaceWithVoid()" );
94
}
95
96
0 commit comments