[jOOQ/jOOQ#7362] Some pedantry
This commit is contained in:
parent
255933935d
commit
a24f8def43
@ -62,7 +62,7 @@ final class FalseCondition extends AbstractCondition implements False, UEmpty {
|
||||
}
|
||||
|
||||
@Override
|
||||
boolean parenthesised(Context<?> ctx) {
|
||||
final boolean parenthesised(Context<?> ctx) {
|
||||
return !NO_SUPPORT_BOOLEAN.contains(ctx.dialect());
|
||||
}
|
||||
|
||||
|
||||
@ -69,7 +69,7 @@ final class NullCondition extends AbstractCondition implements Null, UEmpty {
|
||||
}
|
||||
|
||||
@Override
|
||||
boolean parenthesised(Context<?> ctx) {
|
||||
final boolean parenthesised(Context<?> ctx) {
|
||||
return !NO_SUPPORT_UNTYPED_NULL.contains(ctx.dialect())
|
||||
&& !NO_SUPPORT_BOOLEAN.contains(ctx.dialect());
|
||||
}
|
||||
|
||||
@ -83,7 +83,7 @@ final class TrueCondition extends AbstractCondition implements True, UEmpty {
|
||||
}
|
||||
|
||||
@Override
|
||||
boolean parenthesised(Context<?> ctx) {
|
||||
final boolean parenthesised(Context<?> ctx) {
|
||||
return !NO_SUPPORT_BOOLEAN.contains(ctx.dialect());
|
||||
}
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user