Skip to content

Commit 11c86d2

Browse files
committed
style: Apply code formatting fixes
1 parent 087c91e commit 11c86d2

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

spring-boot-project/spring-boot/src/main/java/org/springframework/boot/json/BasicJsonParser.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,10 +92,12 @@ private Map<String, Object> parseMapInternal(int nesting, String json) {
9292
private Object parseNumber(String json) {
9393
try {
9494
return Long.valueOf(json);
95-
} catch (NumberFormatException e) {
95+
}
96+
catch (NumberFormatException e) {
9697
try {
9798
return Double.valueOf(json);
98-
} catch (NumberFormatException ex) {
99+
}
100+
catch (NumberFormatException ex) {
99101
return json;
100102
}
101103
}

0 commit comments

Comments
 (0)