Skip to content

Commit

Permalink
Missed Javadoc
Browse files Browse the repository at this point in the history
  • Loading branch information
mizosoft committed Jun 23, 2022
1 parent 088900e commit 3f1bf0f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,12 @@
public abstract class TaggableRequest extends HttpRequest {
TaggableRequest() {}

/** Returns the tag associated with the given type if present. */
public <T> Optional<T> tag(Class<T> type) {
return tag(TypeRef.from(type));
}

/** Returns the tag having the given type if present. */
/** Returns the tag associated with the given type if present. */
public abstract <T> Optional<T> tag(TypeRef<T> type);

abstract Map<TypeRef<?>, Object> tags();
Expand Down

0 comments on commit 3f1bf0f

Please sign in to comment.