This is an automated email from the git hooks/post-receive script. tjaalton pushed a commit to branch master in repository jackson-annotations.
commit a1592d1ca6ef95ca12951390c07da3031f16c816 Author: Tatu Saloranta <[email protected]> Date: Mon Mar 19 16:49:55 2012 -0700 minor javadoc cleanup --- src/main/java/com/fasterxml/jackson/annotation/JsonIgnore.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/fasterxml/jackson/annotation/JsonIgnore.java b/src/main/java/com/fasterxml/jackson/annotation/JsonIgnore.java index 17ba509..5dbb0cd 100644 --- a/src/main/java/com/fasterxml/jackson/annotation/JsonIgnore.java +++ b/src/main/java/com/fasterxml/jackson/annotation/JsonIgnore.java @@ -26,11 +26,12 @@ import java.lang.annotation.Target; * be output unless another annotation defines alternative method to use. *<p> * Before version 1.9, this annotation worked purely on method-by-method (or field-by-field) - * basis; annotation on one method or field does not imply ignoring other methods + * basis; annotation on one method or field did not imply ignoring other methods * or fields. However, with version 1.9 and above, annotations associated * with various accessors (getter, setter, field, constructor parameter) of - * a logical property are combined; meaning that annotations may be effectly - * combined. + * a logical property are combined; meaning that annotations in one (say, setter) + * can have effects on all of them (if getter or field has nothing indicating + * otherwise). *<p> * Annotation is usually used just a like a marker annotation, that * is, without explicitly defining 'value' argument (which defaults -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-java/jackson-annotations.git _______________________________________________ pkg-java-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-java-commits

