Collapse bullets into a paragraph

The section entitled "Collections Limitations" contains 3 bullets, but one semantic point.

Make this point in a paragraph instead of a bullet list.
This commit is contained in:
Jonathan Paugh 2016-02-22 15:30:29 -06:00
parent a52828cde7
commit bad5cc8047
1 changed files with 2 additions and 5 deletions

View File

@ -223,11 +223,8 @@ Unfortunately, there is no way to get around this in Java.
#### <a name="TOC-Collections-Limitations"></a>Collections Limitations
* Can serialize collection of arbitrary objects but can not deserialize from it
* Because there is no way for the user to indicate the type of the resulting object
* While deserializing, Collection must be of a specific generic type
All of this makes sense, and is rarely a problem when following good Java coding practices.
Gson can serialize collection of arbitrary objects but can not deserialize from it, because there is no way for the user to indicate the type of the resulting object. Instead, while deserializing, the Collection must be of a specific, generic type.
This makes sense, and is rarely a problem when following good Java coding practices.
### <a name="TOC-Serializing-and-Deserializing-Generic-Types"></a>Serializing and Deserializing Generic Types