Commit 256c211e authored by Greg Messner's avatar Greg Messner
Browse files

Fixed Javadoc warning.

parent 85d04177
...@@ -469,7 +469,7 @@ public class RepositoryApi extends AbstractApi { ...@@ -469,7 +469,7 @@ public class RepositoryApi extends AbstractApi {
* @param from the commit SHA or branch name * @param from the commit SHA or branch name
* @param to the commit SHA or branch name * @param to the commit SHA or branch name
* @return a CompareResults containing the results of the comparison * @return a CompareResults containing the results of the comparison
* @throws GitLabApiException * @throws GitLabApiException if any exception occurs
*/ */
public CompareResults compare(Integer projectId, String from, String to) throws GitLabApiException { public CompareResults compare(Integer projectId, String from, String to) throws GitLabApiException {
Form formData = new GitLabApiForm().withParam("from", from, true).withParam("to", to, true); Form formData = new GitLabApiForm().withParam("from", from, true).withParam("to", to, true);
...@@ -485,7 +485,7 @@ public class RepositoryApi extends AbstractApi { ...@@ -485,7 +485,7 @@ public class RepositoryApi extends AbstractApi {
* @param from the commit SHA or branch name * @param from the commit SHA or branch name
* @param to the commit SHA or branch name * @param to the commit SHA or branch name
* @return a CompareResults containing the results of the comparison * @return a CompareResults containing the results of the comparison
* @throws GitLabApiException * @throws GitLabApiException if any exception occurs
*/ */
public CompareResults compare(String projectPath, String from, String to) throws GitLabApiException { public CompareResults compare(String projectPath, String from, String to) 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