Fix whitespace issues in format-off code
Fix a few whitespace issues in format-off code that would otherwise fail checkstyle. Issue gh-8945
This commit is contained in:
@@ -57,8 +57,7 @@ class CookieDeserializer extends JsonDeserializer<Cookie> {
|
||||
}
|
||||
|
||||
private JsonNode readJsonNode(JsonNode jsonNode, String field) {
|
||||
return hasNonNullField(jsonNode, field) ? jsonNode.get(field)
|
||||
: MissingNode.getInstance();
|
||||
return hasNonNullField(jsonNode, field) ? jsonNode.get(field) : MissingNode.getInstance();
|
||||
}
|
||||
|
||||
private boolean hasNonNullField(JsonNode jsonNode, String field) {
|
||||
|
||||
Reference in New Issue
Block a user