Skip to content

Commit

Permalink
- third attempt at fixing tag usage
Browse files Browse the repository at this point in the history
Signed-off-by: Vincent Biret <vibiret@microsoft.com>
  • Loading branch information
baywet committed Mar 1, 2024
1 parent 4a66d08 commit e0ebdc0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public UserAgentHandler(@Nullable UserAgentHandlerOption userAgentHandlerOption)

private static final String USER_AGENT_HEADER_NAME = "User-Agent";

/** @inheritDoc */
/** {@inheritDoc} */
@Override
@SuppressWarnings("UnknownNullness")
public Response intercept(final Chain chain) throws IOException {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public ParametersNameDecodingOption() {}
/** The list of characters to decode in the request query parameters names before executing the request */
@Nonnull public char[] parametersToDecode = {'-', '.', '~', '$'};

/** @inheritDoc */
/** {@inheritDoc} */
@SuppressWarnings("unchecked")
@Override
@Nonnull public <T extends RequestOption> Class<T> getType() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public TelemetryHandlerOption() {}
*/
@Nullable public Function<Request, Request> telemetryConfigurator = (request) -> request;

/** @inheritDoc */
/** {@inheritDoc} */
@Override
@SuppressWarnings("unchecked")
@Nonnull public <T extends RequestOption> Class<T> getType() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public void setEnabled(final boolean value) {
enabled = value;
}

/** @inheritDoc */
/** {@inheritDoc} */
@Override
@SuppressWarnings("unchecked")
@Nonnull public <T extends RequestOption> Class<T> getType() {
Expand Down

0 comments on commit e0ebdc0

Please sign in to comment.