HHH-15575 Make getter org.hibernate.criterion.SimpleExpression#getOp() public

This commit is contained in:
Andrea Boriero 2022-10-19 13:21:50 +02:00 committed by Sanne Grinovero
parent a2555cfbae
commit c6bfc29b42
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ public class SimpleExpression implements Criterion {
this.op = op;
}
protected final String getOp() {
public final String getOp() {
return op;
}