Skip to content

Commit fdd5933

Browse files
committed
more meaningless spaces
1 parent 98af602 commit fdd5933

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ JPostman uses the NetworkNT [json-schema-validator](https://github.com/networknt
142142

143143
## Implementation
144144

145-
Java does not natively support JSON llike NodeJS does. Object models based on JSON must be manually constructed. Forutnately the brilliant folks at Google came up with [GSON](https://github.com/google/gson) a library that does this automatically. Basically you create Java classes with member variables that match the keys in the JSON file. GSON then parses the file and builds out the object model. GSON also allows for an object model to be written out to JSON.
145+
Java does not natively support JSON in the way that NodeJS does. Object models based on JSON must be manually constructed. Forutnately the brilliant folks at Google came up with [GSON](https://github.com/google/gson) a library that does this automatically. Basically you create Java classes with member variables that match the keys in the JSON file. GSON then parses the file and builds out the object model. GSON also allows for an object model to be written out to JSON.
146146

147147
GSON does not link parents to their child objects, so deriving parent objects is not straightforward. In this implementation we recurse the object tree until we find the object which contains the target object, and return that as the parent.
148148

0 commit comments

Comments
 (0)