From dc283e112159a3fbace97853c95da1cbbfc125f2 Mon Sep 17 00:00:00 2001 From: Joel Leitch Date: Tue, 5 Apr 2011 23:36:05 +0000 Subject: [PATCH] Fixed comments from r774. --- gson/src/main/java/com/google/gson/GsonBuilder.java | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/gson/src/main/java/com/google/gson/GsonBuilder.java b/gson/src/main/java/com/google/gson/GsonBuilder.java index 806f8d3f..83092272 100644 --- a/gson/src/main/java/com/google/gson/GsonBuilder.java +++ b/gson/src/main/java/com/google/gson/GsonBuilder.java @@ -353,13 +353,12 @@ public final class GsonBuilder { } /** - * Configures Gson to apply a set of exclusion strategies during either serialization. + * Configures Gson to apply a set of exclusion strategies during serialization. * Each of the {@code strategies} will be applied as a disjunction rule. * This means that if one of the {@code strategies} suggests that a field (or class) should be - * skipped then that field (or object) is skipped during either serialization - * depending on the {@code mode} that is passed into this method. + * skipped then that field (or object) is skipped during serialization. * - * @param strategies the set of strategy object to apply during the {@code mode}. + * @param strategies the set of strategy objects to apply during serialization. * @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern * @since 1.7 */ @@ -372,10 +371,9 @@ public final class GsonBuilder { * Configures Gson to apply a set of exclusion strategies during deserialization. * Each of the {@code strategies} will be applied as a disjunction rule. * This means that if one of the {@code strategies} suggests that a field (or class) should be - * skipped then that field (or object) is skipped during deserialization - * depending on the {@code mode} that is passed into this method. + * skipped then that field (or object) is skipped during deserialization. * - * @param strategies the set of strategy object to apply during the {@code mode}. + * @param strategies the set of strategy object to apply during deserialization. * @return a reference to this {@code GsonBuilder} object to fulfill the "Builder" pattern * @since 1.7 */