Skip to content
This repository was archived by the owner on Jul 31, 2025. It is now read-only.

Commit 8dcea59

Browse files
committed
Fixed javadoc errors
1 parent f482f77 commit 8dcea59

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

src/main/java/org/kohsuke/github/GHAuthorization.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*
1111
* @author janinko
1212
* @see GitHub#createToken(Collection, String, String)
13-
* @see http://developer.github.com/v3/oauth/#create-a-new-authorization
13+
* @see <a href="proxy.php?url=https%3A%2F%2Fgithub.com%2F%3C%2Fspan%3Ehttp%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23create-a-new-authorization%3Cspan+class%3D"x x-first x-last">">API documentation</a>
1414
*/
1515
public class GHAuthorization extends GHObject {
1616
public static final String USER = "user";

src/main/java/org/kohsuke/github/GHCommitStatus.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
* Represents a status of a commit.
88
*
99
* @author Kohsuke Kawaguchi
10-
* @see GHRepository#getCommitStatus(String)
11-
* @see GHCommit#getStatus()
10+
* @see GHRepository#getLastCommitStatus(String)
11+
* @see GHCommit#getLastStatus()
1212
*/
1313
public class GHCommitStatus extends GHObject {
1414
String state;

src/main/java/org/kohsuke/github/GHRepository.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ public Date getPushedAt() {
353353
}
354354

355355
/**
356-
* Returns the primary branch you'll configure in the "Admin > Options" config page.
356+
* Returns the primary branch you'll configure in the "Admin &gt; Options" config page.
357357
*
358358
* @return
359359
* This field is null until the user explicitly configures the master branch.
@@ -780,7 +780,7 @@ public GHCommitStatus createCommitStatus(String sha1, GHCommitState state, Strin
780780
}
781781

782782
/**
783-
* @see {@link #createCommitStatus(String, GHCommitState,String,String,String) createCommitStatus}
783+
* @see #createCommitStatus(String, GHCommitState,String,String,String)
784784
*/
785785
public GHCommitStatus createCommitStatus(String sha1, GHCommitState state, String targetUrl, String description) throws IOException {
786786
return createCommitStatus(sha1, state, targetUrl, description,null);

src/main/java/org/kohsuke/github/GitHub.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
* <p>
6161
* This library aims to be safe for use by multiple threads concurrently, although
6262
* the library itself makes no attempt to control/serialize potentially conflicting
63-
* operations to GitHub, such as updating & deleting a repository at the same time.
63+
* operations to GitHub, such as updating &amp; deleting a repository at the same time.
6464
*
6565
* @author Kohsuke Kawaguchi
6666
*/

0 commit comments

Comments
 (0)