Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix various paragraph issues in javadoc #867

Merged
merged 1 commit into from Jan 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -29,8 +29,6 @@
* amount of content read from the input stream, you may use {@link ByteStreams#limit(InputStream,
* long)}.
*
* <p>
*
* <p>Implementations don't need to be thread-safe.
*
* @since 1.4
Expand Down
Expand Up @@ -31,7 +31,7 @@
* retry_interval * (random value in range [1 - randomization_factor, 1 + randomization_factor])
* </pre>
*
* In other words {@link #getNextBackOffMillis()} will range between the randomization factor
* <p>In other words {@link #getNextBackOffMillis()} will range between the randomization factor
* percentage below and above the retry interval. For example, using 2 seconds as the base retry
* interval and 0.5 as the randomization factor, the actual back off period used in the next retry
* attempt will be between 1 and 3 seconds.
Expand Down
Expand Up @@ -50,8 +50,6 @@
* <p>Implementation has no fields and therefore thread-safe, but sub-classes are not necessarily
* thread-safe.
*
* <p>
*
* <p>If a JSON map is encountered while using a destination class of type Map, then an {@link
* java.util.ArrayMap} is used by default for the parsed values.
*
Expand Down
Expand Up @@ -32,15 +32,15 @@
* </code>
* </pre>
*
* can be used for this JSON content:
* <p>can be used for this JSON content:
*
* <pre>
* <code>
* {"value" : 12345768901234576890123457689012345768901234576890}
* </code>
* </pre>
*
* However, if instead the JSON content uses a JSON String to store the value, one needs to use the
* <p>However, if instead the JSON content uses a JSON String to store the value, one needs to use the
* {@link JsonString} annotation. For example:
*
* <pre>
Expand All @@ -51,7 +51,7 @@
* </code>
* </pre>
*
* can be used for this JSON content:
* <p>can be used for this JSON content:
*
* <pre>
* <code>
Expand Down
Expand Up @@ -240,7 +240,7 @@ public X509TrustManager getTrustManager() throws IOException, GeneralSecurityExc
* {"foo":"bar"}
* </pre>
*
* The message is signed using {@code FOO_BAR_COM_KEY}.
* <p>The message is signed using {@code FOO_BAR_COM_KEY}.
*/
public static final String JWS_SIGNATURE =
"eyJhbGciOiJSUzI1NiIsIng1YyI6WyJNSUlDNlRDQ0FkRUNBU293RFFZSktvWklo"
Expand Down
Expand Up @@ -36,9 +36,7 @@
*
* <p>Limitations:
*
* <p>
*
* <ul>
* <p><ul>
* <li>Assumes the PEM file section content is not encrypted and cannot handle the case of any
* headers inside the BEGIN and END tag.
* <li>It also ignores any attributes associated with any PEM file section.
Expand Down