Skip to content

Commit

Permalink
- fixes doc comment syntax
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 49d9108 commit c9ad22d
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 c9ad22d

Please sign in to comment.