Skip to content

Commit 5dd4feb

Browse files
committed
- fixes params documentation
1 parent 2264eae commit 5dd4feb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/main/java/com/microsoft/graph/serializer/CollectionPageSerializer.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ private CollectionPageSerializer() {
7070
*
7171
* @param src the CollectionPage variable for serialization
7272
* @param logger the logger
73-
* @param T1 the entity type for the collection
74-
* @param T2 the collection request builder interface type
73+
* @param <T1> the entity type for the collection
74+
* @param <T2> the collection request builder interface type
7575
* @return JsonElement of CollectionPage
7676
*/
7777
public static <T1, T2 extends IRequestBuilder> JsonElement serialize(final BaseCollectionPage<T1, T2> src, final ILogger logger) {
@@ -98,8 +98,8 @@ public static <T1, T2 extends IRequestBuilder> JsonElement serialize(final BaseC
9898
* @param json the source CollectionPage's Json
9999
* @param typeOfT The type of the CollectionPage to deserialize to
100100
* @param logger the logger
101-
* @param T1 the entity type for the collection
102-
* @param T2 the collection request builder interface type
101+
* @param <T1> the entity type for the collection
102+
* @param <T2> the collection request builder interface type
103103
* @throws JsonParseException the parse exception
104104
* @return the deserialized CollectionPage
105105
*/

0 commit comments

Comments
 (0)