Skip to content

Commit 122e92e

Browse files
call getDefaultStyle with String value
1 parent 76b5b66 commit 122e92e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sqldev/src/main/java/org/utplsql/sqldev/model/JsonToStringStyler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public String style(Object value) {
162162
} else if (value instanceof Map) {
163163
return getMapStyle((Map<?, ?>) value);
164164
} else {
165-
return getDefaultStyle(value);
165+
return getDefaultStyle(value.toString());
166166
}
167167
}
168168
}

0 commit comments

Comments
 (0)