@@ -1024,7 +1024,7 @@ public <T> T fromJson(String json, Type typeOfT) throws JsonSyntaxException {
10241024 *
10251025 * @see #fromJson(Reader, TypeToken)
10261026 * @see #fromJson(String, Class)
1027- * @since $next-version$
1027+ * @since 2.10
10281028 */
10291029 public <T > T fromJson (String json , TypeToken <T > typeOfT ) throws JsonSyntaxException {
10301030 if (json == null ) {
@@ -1117,7 +1117,7 @@ public <T> T fromJson(Reader json, Type typeOfT) throws JsonIOException, JsonSyn
11171117 *
11181118 * @see #fromJson(String, TypeToken)
11191119 * @see #fromJson(Reader, Class)
1120- * @since $next-version$
1120+ * @since 2.10
11211121 */
11221122 public <T > T fromJson (Reader json , TypeToken <T > typeOfT ) throws JsonIOException , JsonSyntaxException {
11231123 JsonReader jsonReader = newJsonReader (json );
@@ -1201,7 +1201,7 @@ public <T> T fromJson(JsonReader reader, Type typeOfT) throws JsonIOException, J
12011201 *
12021202 * @see #fromJson(Reader, TypeToken)
12031203 * @see #fromJson(JsonReader, Type)
1204- * @since $next-version$
1204+ * @since 2.10
12051205 */
12061206 public <T > T fromJson (JsonReader reader , TypeToken <T > typeOfT ) throws JsonIOException , JsonSyntaxException {
12071207 boolean isEmpty = true ;
@@ -1310,7 +1310,7 @@ public <T> T fromJson(JsonElement json, Type typeOfT) throws JsonSyntaxException
13101310 *
13111311 * @see #fromJson(Reader, TypeToken)
13121312 * @see #fromJson(JsonElement, Class)
1313- * @since $next-version$
1313+ * @since 2.10
13141314 */
13151315 public <T > T fromJson (JsonElement json , TypeToken <T > typeOfT ) throws JsonSyntaxException {
13161316 if (json == null ) {
0 commit comments