From f923f7f537d019728fc4eda0fa7e9a7af2c920ee Mon Sep 17 00:00:00 2001 From: Joel Leitch Date: Sun, 28 Dec 2008 03:35:07 +0000 Subject: [PATCH] Add "@since" JavaDoc to the new methods in GsonBuilder. --- gson/src/main/java/com/google/gson/GsonBuilder.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gson/src/main/java/com/google/gson/GsonBuilder.java b/gson/src/main/java/com/google/gson/GsonBuilder.java index 2f71042c..8382d0d2 100644 --- a/gson/src/main/java/com/google/gson/GsonBuilder.java +++ b/gson/src/main/java/com/google/gson/GsonBuilder.java @@ -153,6 +153,7 @@ public final class GsonBuilder { * @param value the boolean value on whether or not {@code Gson} should serialize a {@code long} * field as a {@code String} * @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern + * @since 1.3 */ public GsonBuilder serializeLongFieldsAsString(boolean value) { serializeLongAsString = value; @@ -164,6 +165,7 @@ public final class GsonBuilder { * * @param value the boolean value on whether or not {@code Gson} should serialize inner classes * @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern + * @since 1.3 */ public GsonBuilder serializeInnerClasses(boolean value) { serializeInnerClasses = value; @@ -372,7 +374,7 @@ public final class GsonBuilder { * values. * * @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern - * @Since 1.3 + * @since 1.3 */ public GsonBuilder serializeSpecialFloatingPointValues() { this.serializeSpecialFloatingPointValues = true;