Skip to content

Commit 2541e79

Browse files
committed
Fixed Javadoc warnings.
1 parent 156d828 commit 2541e79

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/main/java/org/gitlab4j/api/IssuesApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ public Stream<Issue> getIssuesStream(IssueFilter filter) throws GitLabApiExcepti
286286
* <pre><code>GitLab Endpoint: GET /projects/:id/issues/:issue_iid</code></pre>
287287
*
288288
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance
289-
* @param issueid the internal ID of a project's issue
289+
* @param issueIid the internal ID of a project's issue
290290
* @return the specified Issue instance
291291
* @throws GitLabApiException if any exception occurs
292292
*/

src/main/java/org/gitlab4j/api/ProjectApi.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2395,7 +2395,6 @@ public Project transferProject(Object projectIdOrPath, String namespace) throws
23952395
*
23962396
* @param projectIdOrPath projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance, required
23972397
* @param avatarFile the File instance of the avatar file to upload
2398-
* @param mediaType the media type of the avatar file to upload, optional
23992398
* @return the updated Project instance
24002399
* @throws GitLabApiException if any exception occurs
24012400
*/

src/main/java/org/gitlab4j/api/RepositoryApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public Stream<Branch> getBranchesStream(Object projectIdOrPath) throws GitLabApi
9797
*
9898
* @param projectIdOrPath the project in the form of an Integer(ID), String(path), or Project instance
9999
* @param branchName the name of the branch to get
100-
* @return the branch info for the specified project ID/branch name pair</code></pre>
100+
* @return the branch info for the specified project ID/branch name pair
101101
* @throws GitLabApiException if any exception occurs
102102
*/
103103
public Branch getBranch(Object projectIdOrPath, String branchName) throws GitLabApiException {

0 commit comments

Comments
 (0)