Skip to content

Commit

Permalink
Merge pull request #137 from zehua/fix-jsoninclude-javadoc
Browse files Browse the repository at this point in the history
fixed JsonInclude incorrect link javadoc
  • Loading branch information
cowtowncoder committed May 21, 2018
2 parents 904d47a + e872cdc commit ab01a57
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -23,7 +23,7 @@
*<p>
* To base inclusion on value of contained value(s), you will typically also need
* to specify {@link #content()} annotation; for example, specifying only
* {@link #value} as {@link Include#NON_EMPTY} for a {link java.util.Map} would
* {@link #value} as {@link Include#NON_EMPTY} for a {@link java.util.Map} would
* exclude <code>Map</code>s with no values, but would include <code>Map</code>s
* with `null` values. To exclude Map with only `null` value, you would use both
* annotations like so:
Expand Down Expand Up @@ -112,7 +112,7 @@ public enum Include
*<ul>
* <li>null</li>
* <li>"absent" value of a referential type (like Java 8 `Optional`, or
* {link java.utl.concurrent.atomic.AtomicReference}); that is, something
* {@link java.utl.concurrent.atomic.AtomicReference}); that is, something
* that would not deference to a non-null value.
* </ul>
* This option is mostly used to work with "Optional"s (Java 8, Guava).
Expand Down

0 comments on commit ab01a57

Please sign in to comment.