Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,10 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
Expand Down Expand Up @@ -516,10 +520,6 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion spec/src/main/java/io/a2a/json/JsonUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ private static GsonBuilder createBaseGsonBuilder() {
* <p>
* Used throughout the SDK for consistent JSON serialization and deserialization.
*
* @see GsonFactory#createGson()
* @see GsonBuilder
*/
public static final Gson OBJECT_MAPPER = createBaseGsonBuilder()
.registerTypeHierarchyAdapter(Part.class, new PartTypeAdapter())
Expand Down
3 changes: 2 additions & 1 deletion spec/src/main/java/io/a2a/util/Utils.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package io.a2a.util;

import java.lang.reflect.Type;
import java.util.ArrayList;
import java.util.List;

Expand Down Expand Up @@ -43,7 +44,7 @@ public class Utils {
/**
* Deserializes JSON string into a typed object using Gson.
* <p>
* This method uses the pre-configured {@link #OBJECT_MAPPER} to parse JSON.
* This method uses the pre-configured {@link JsonUtil#fromJson(String, Class)} to parse JSON.
*
* @param <T> the target type
* @param data JSON string to deserialize
Expand Down
Loading