Commit 661ea9b2 authored by Greg Messner's avatar Greg Messner
Browse files

Fixed Javadoc issues (#447).

parent 775e147a
...@@ -2952,8 +2952,8 @@ public class ProjectApi extends AbstractApi implements Constants { ...@@ -2952,8 +2952,8 @@ public class ProjectApi extends AbstractApi implements Constants {
* *
* <pre><code>GitLab Endpoint: GET /projects/:id/badges</code></pre> * <pre><code>GitLab Endpoint: GET /projects/:id/badges</code></pre>
* *
* @param projectIdOrPath the project in the form of an Integer(ID), * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance
* String(path), or Project instance * @return a List of Badge instances for the specified project
* @throws GitLabApiException if any exception occurs * @throws GitLabApiException if any exception occurs
*/ */
public List<Badge> getBadges(Object projectIdOrPath) throws GitLabApiException { public List<Badge> getBadges(Object projectIdOrPath) throws GitLabApiException {
...@@ -2984,7 +2984,6 @@ public class ProjectApi extends AbstractApi implements Constants { ...@@ -2984,7 +2984,6 @@ public class ProjectApi extends AbstractApi implements Constants {
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance
* @param badgeId the ID of the badge to get * @param badgeId the ID of the badge to get
* @return an Optional instance with the specified badge as the value * @return an Optional instance with the specified badge as the value
* @throws GitLabApiException if any exception occurs
*/ */
public Optional<Badge> getOptionalBadge(Object projectIdOrPath, Integer badgeId) { public Optional<Badge> getOptionalBadge(Object projectIdOrPath, Integer badgeId) {
try { try {
...@@ -3040,7 +3039,6 @@ public class ProjectApi extends AbstractApi implements Constants { ...@@ -3040,7 +3039,6 @@ public class ProjectApi extends AbstractApi implements Constants {
* *
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance * @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance
* @param badgeId the ID of the badge to remove * @param badgeId the ID of the badge to remove
* @return a Badge instance for the specified project/badge ID pair
* @throws GitLabApiException if any exception occurs * @throws GitLabApiException if any exception occurs
*/ */
public void removeBadge(Object projectIdOrPath, Integer badgeId) throws GitLabApiException { public void removeBadge(Object projectIdOrPath, Integer badgeId) throws GitLabApiException {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment