Skip to content

Commit 0525d9c

Browse files
style: fix CheckStyle white space exceptions
Signed-off-by: Andreas Reichel <andreas@manticore-projects.com>
1 parent b7b58f2 commit 0525d9c

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/main/java/net/sf/jsqlparser/expression/JsonAggregateFunction.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public StringBuilder appendObject(StringBuilder builder) {
214214
}
215215

216216
if (onNullType!=null) {
217-
switch(onNullType) {
217+
switch (onNullType) {
218218
case NULL:
219219
builder.append(" NULL ON NULL");
220220
break;
@@ -227,7 +227,7 @@ public StringBuilder appendObject(StringBuilder builder) {
227227
}
228228

229229
if (uniqueKeysType!=null) {
230-
switch(uniqueKeysType) {
230+
switch (uniqueKeysType) {
231231
case WITH:
232232
builder.append(" WITH UNIQUE KEYS");
233233
break;
@@ -260,7 +260,7 @@ public StringBuilder appendArray(StringBuilder builder) {
260260
expressionOrderBy.toStringOrderByElements(builder);
261261

262262
if (onNullType!=null) {
263-
switch(onNullType) {
263+
switch (onNullType) {
264264
case NULL:
265265
builder.append(" NULL ON NULL ");
266266
break;

0 commit comments

Comments
 (0)