Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a42305d

Browse filesBrowse files
committed
Revert "Removed extraneous author javadocs"
This reverts commit 888abc9.
1 parent c22a718 commit a42305d
Copy full SHA for a42305d

File tree

Expand file treeCollapse file tree

151 files changed

+241
-21
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

151 files changed

+241
-21
lines changed

‎src/main/java/org/kohsuke/github/AbuseLimitHandler.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/AbuseLimitHandler.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/**
88
* Pluggable strategy to determine what to do when the API abuse limit is hit.
99
*
10+
* @author Kohsuke Kawaguchi
1011
* @see GitHubBuilder#withAbuseLimitHandler(AbuseLimitHandler) GitHubBuilder#withAbuseLimitHandler(AbuseLimitHandler)
1112
* @see <a href="https://developer.github.com/v3/#abuse-rate-limits">documentation</a>
1213
* @see RateLimitHandler
@@ -31,6 +32,7 @@ public abstract class AbuseLimitHandler {
3132
* @see <a href=
3233
* "https://developer.github.com/v3/guides/best-practices-for-integrators/#dealing-with-abuse-rate-limits">Dealing
3334
* with abuse rate limits</a>
35+
*
3436
*/
3537
public abstract void onError(IOException e, HttpURLConnection uc) throws IOException;
3638

‎src/main/java/org/kohsuke/github/EnforcementLevel.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/EnforcementLevel.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
/**
66
* This was added during preview API period but it has changed since then.
7+
*
8+
* @author Kohsuke Kawaguchi
79
*/
810
@Deprecated
911
public enum EnforcementLevel {

‎src/main/java/org/kohsuke/github/GHApp.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHApp.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/**
1111
* A Github App.
1212
*
13+
* @author Paulo Miguel Almeida
1314
* @see GitHub#getApp() GitHub#getApp()
1415
*/
1516
public class GHApp extends GHObject {

‎src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHAppCreateTokenBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/**
1111
* Creates a access token for a GitHub App Installation
1212
*
13+
* @author Paulo Miguel Almeida
1314
* @see GHAppInstallation#createToken(Map) GHAppInstallation#createToken(Map)
1415
* @see GHAppInstallation#createToken() GHAppInstallation#createToken()
1516
*/

‎src/main/java/org/kohsuke/github/GHAppInstallation.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHAppInstallation.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
/**
1313
* A Github App Installation.
1414
*
15+
* @author Paulo Miguel Almeida
1516
* @see GHApp#listInstallations() GHApp#listInstallations()
1617
* @see GHApp#getInstallationById(long) GHApp#getInstallationById(long)
1718
* @see GHApp#getInstallationByOrganization(String) GHApp#getInstallationByOrganization(String)

‎src/main/java/org/kohsuke/github/GHAppInstallationToken.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHAppInstallationToken.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/**
1212
* A Github App Installation Token.
1313
*
14+
* @author Paulo Miguel Almeida
1415
* @see GHAppInstallation#createToken(Map) GHAppInstallation#createToken(Map)
1516
*/
1617
public class GHAppInstallationToken {

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHAuthorization.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/**
1010
* Generated OAuth token
1111
*
12+
* @author janinko
1213
* @see GitHub#createToken(Collection, String, String) GitHub#createToken(Collection, String, String)
1314
* @see <a href="http://developer.github.com/v3/oauth/#create-a-new-authorization">API documentation</a>
1415
*/

‎src/main/java/org/kohsuke/github/GHBlob.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHBlob.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
/**
99
* The type GHBlob.
1010
*
11+
* @author Kanstantsin Shautsou
1112
* @author Kohsuke Kawaguchi
1213
* @see GHTreeEntry#asBlob() GHTreeEntry#asBlob()
1314
* @see GHRepository#getBlob(String) GHRepository#getBlob(String)

‎src/main/java/org/kohsuke/github/GHBranch.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHBranch.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
/**
1313
* A branch in a repository.
14+
*
15+
* @author Yusuke Kokubo
1416
*/
1517
@SuppressFBWarnings(
1618
value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD",

‎src/main/java/org/kohsuke/github/GHCommentAuthorAssociation.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommentAuthorAssociation.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
/**
44
* How is an user associated with a repository?
5+
*
6+
* @author Kohsuke Kawaguchi
57
*/
68
public enum GHCommentAuthorAssociation {
79
/**

‎src/main/java/org/kohsuke/github/GHCommit.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommit.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/**
1515
* A commit in a repository.
1616
*
17+
* @author Kohsuke Kawaguchi
1718
* @see GHRepository#getCommit(String) GHRepository#getCommit(String)
1819
* @see GHCommitComment#getCommit() GHCommitComment#getCommit()
1920
*/

‎src/main/java/org/kohsuke/github/GHCommitComment.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitComment.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
/**
1111
* A comment attached to a commit (or a specific line in a specific file of a commit.)
1212
*
13+
* @author Kohsuke Kawaguchi
1314
* @see GHRepository#listCommitComments() GHRepository#listCommitComments()
1415
* @see GHCommit#listComments() GHCommit#listComments()
1516
* @see GHCommit#createComment(String, String, Integer, Integer) GHCommit#createComment(String, String, Integer,

‎src/main/java/org/kohsuke/github/GHCommitPointer.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitPointer.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727

2828
/**
2929
* Identifies a commit in {@link GHPullRequest}.
30+
*
31+
* @author Kohsuke Kawaguchi
3032
*/
3133
public class GHCommitPointer {
3234
private String ref, sha, label;

‎src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitQueryBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* }
1616
* </pre>
1717
*
18+
* @author Kohsuke Kawaguchi
1819
* @see GHRepository#queryCommits() GHRepository#queryCommits()
1920
*/
2021
public class GHCommitQueryBuilder {

‎src/main/java/org/kohsuke/github/GHCommitSearchBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitSearchBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/**
88
* Search commits.
99
*
10+
* @author Marc de Verdelhan
1011
* @see GitHub#searchCommits() GitHub#searchCommits()
1112
*/
1213
@Preview

‎src/main/java/org/kohsuke/github/GHCommitState.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitState.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* Represents the state of commit
55
*
6+
* @author Kohsuke Kawaguchi
67
* @see GHCommitStatus
78
*/
89
public enum GHCommitState {

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitStatus.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
/**
77
* Represents a status of a commit.
88
*
9+
* @author Kohsuke Kawaguchi
910
* @see GHRepository#getLastCommitStatus(String) GHRepository#getLastCommitStatus(String)
1011
* @see GHCommit#getLastStatus() GHCommit#getLastStatus()
1112
* @see GHRepository#createCommitStatus(String, GHCommitState, String, String) GHRepository#createCommitStatus(String,

‎src/main/java/org/kohsuke/github/GHCompare.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCompare.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
/**
99
* The model user for comparing 2 commits in the GitHub API.
10+
*
11+
* @author Michael Clarke
1012
*/
1113
public class GHCompare {
1214

‎src/main/java/org/kohsuke/github/GHContent.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHContent.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
/**
1212
* A Content of a repository.
1313
*
14+
* @author Alexandre COLLIGNON
1415
* @see GHRepository#getFileContent(String) GHRepository#getFileContent(String)
1516
*/
1617
@SuppressWarnings({ "UnusedDeclaration" })

‎src/main/java/org/kohsuke/github/GHContentBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHContentBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* <p>
1111
* Call various methods to build up parameters, then call {@link #commit()} to make the change effective.
1212
*
13+
* @author Kohsuke Kawaguchi
1314
* @see GHRepository#createContent() GHRepository#createContent()
1415
*/
1516
public final class GHContentBuilder {

‎src/main/java/org/kohsuke/github/GHContentSearchBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHContentSearchBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* Search code for {@link GHContent}.
55
*
6+
* @author Kohsuke Kawaguchi
67
* @see GitHub#searchContent() GitHub#searchContent()
78
*/
89
public class GHContentSearchBuilder extends GHSearchBuilder<GHContent> {

‎src/main/java/org/kohsuke/github/GHContentWithLicense.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHContentWithLicense.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* {@link GHContent} with license information.
55
*
6+
* @author Kohsuke Kawaguchi
67
* @see <a href="https://developer.github.com/v3/licenses/#get-a-repositorys-license">documentation</a>
78
* @see GHRepository#getLicense()
89
*/

‎src/main/java/org/kohsuke/github/GHCreateRepositoryBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCreateRepositoryBuilder.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
/**
77
* Creates a repository
8+
*
9+
* @author Kohsuke Kawaguchi
810
*/
911
public class GHCreateRepositoryBuilder {
1012
private final GitHub root;

‎src/main/java/org/kohsuke/github/GHDirection.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHDirection.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
/**
44
* Sort direction
5+
*
6+
* @author Kohsuke Kawaguchi
57
*/
68
public enum GHDirection {
79
ASC, DESC

‎src/main/java/org/kohsuke/github/GHEmail.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHEmail.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@
2727

2828
/**
2929
* Represents an email of GitHub.
30+
*
31+
* @author Kelly Campbell
3032
*/
3133
@SuppressFBWarnings(
3234
value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD",

‎src/main/java/org/kohsuke/github/GHEvent.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHEvent.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/**
66
* Hook event type.
77
*
8+
* @author Kohsuke Kawaguchi
89
* @see GHEventInfo
910
* @see <a href="https://developer.github.com/v3/activity/events/types/">Event type reference</a>
1011
*/

‎src/main/java/org/kohsuke/github/GHEventInfo.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHEventInfo.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88

99
/**
1010
* Represents an event.
11+
*
12+
* @author Kohsuke Kawaguchi
1113
*/
1214
@SuppressFBWarnings(value = "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", justification = "JSON API")
1315
public class GHEventInfo {

‎src/main/java/org/kohsuke/github/GHException.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHException.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
/**
44
* The type GHException.
5+
*
6+
* @author Kohsuke Kawaguchi
57
*/
68
public class GHException extends RuntimeException {
79
/**

‎src/main/java/org/kohsuke/github/GHFileNotFoundException.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHFileNotFoundException.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* Request/responce contains useful metadata. Custom exception allows store info for next diagnostics.
12+
*
13+
* @author Kanstantsin Shautsou
1214
*/
1315
public class GHFileNotFoundException extends FileNotFoundException {
1416
protected Map<String, List<String>> responseHeaderFields;

‎src/main/java/org/kohsuke/github/GHGist.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHGist.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
/**
1515
* Gist
1616
*
17+
* @author Kohsuke Kawaguchi
1718
* @see GHUser#listGists() GHUser#listGists()
1819
* @see GitHub#getGist(String) GitHub#getGist(String)
1920
* @see GitHub#createGist() GitHub#createGist()

‎src/main/java/org/kohsuke/github/GHGistBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHGistBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/**
88
* Builder pattern for creating a new Gist.
99
*
10+
* @author Kohsuke Kawaguchi
1011
* @see GitHub#createGist() GitHub#createGist()
1112
*/
1213
public class GHGistBuilder {

‎src/main/java/org/kohsuke/github/GHGistFile.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHGistFile.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* A file inside {@link GHGist}
55
*
6+
* @author Kohsuke Kawaguchi
67
* @see GHGist#getFile(String) GHGist#getFile(String)
78
* @see GHGist#getFiles() GHGist#getFiles()
89
*/

‎src/main/java/org/kohsuke/github/GHGistUpdater.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHGistUpdater.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
/**
88
* Builder pattern for updating a Gist.
9+
*
10+
* @author Martin van Zijl
911
*/
1012
public class GHGistUpdater {
1113
private final GHGist base;

‎src/main/java/org/kohsuke/github/GHHook.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHHook.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212

1313
/**
1414
* The type GHHook.
15+
*
16+
* @author Kohsuke Kawaguchi
1517
*/
1618
@SuppressFBWarnings(value = { "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", "UWF_UNWRITTEN_FIELD", "NP_UNWRITTEN_FIELD" },
1719
justification = "JSON API")

‎src/main/java/org/kohsuke/github/GHIOException.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIOException.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
/**
1111
* Request/responce contains useful metadata. Custom exception allows store info for next diagnostics.
12+
*
13+
* @author Kanstantsin Shautsou
1214
*/
1315
public class GHIOException extends IOException {
1416
protected Map<String, List<String>> responseHeaderFields;

‎src/main/java/org/kohsuke/github/GHIssue.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIssue.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
/**
4444
* Represents an issue on GitHub.
4545
*
46+
* @author Eric Maupin
4647
* @author Kohsuke Kawaguchi
4748
* @see GHRepository#getIssue(int) GHRepository#getIssue(int)
4849
* @see GitHub#searchIssues() GitHub#searchIssues()

‎src/main/java/org/kohsuke/github/GHIssueBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIssueBuilder.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66

77
/**
88
* The type GHIssueBuilder.
9+
*
10+
* @author Kohsuke Kawaguchi
911
*/
1012
public class GHIssueBuilder {
1113
private final GHRepository repo;

‎src/main/java/org/kohsuke/github/GHIssueComment.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIssueComment.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
/**
3232
* Comment to the issue
3333
*
34+
* @author Kohsuke Kawaguchi
3435
* @see GHIssue#comment(String) GHIssue#comment(String)
3536
* @see GHIssue#listComments() GHIssue#listComments()
3637
*/

‎src/main/java/org/kohsuke/github/GHIssueEvent.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIssueEvent.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
/**
66
* The type GHIssueEvent.
7+
*
8+
* @author Martin van Zijl
79
*/
810
public class GHIssueEvent {
911
private GitHub root;

‎src/main/java/org/kohsuke/github/GHIssueSearchBuilder.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHIssueSearchBuilder.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
/**
44
* Search issues.
55
*
6+
* @author Kohsuke Kawaguchi
67
* @see GitHub#searchIssues() GitHub#searchIssues()
78
*/
89
public class GHIssueSearchBuilder extends GHSearchBuilder<GHIssue> {

‎src/main/java/org/kohsuke/github/GHKey.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHKey.java
+2Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
/**
77
* SSH public key.
8+
*
9+
* @author Kohsuke Kawaguchi
810
*/
911
@SuppressFBWarnings(value = "UWF_UNWRITTEN_PUBLIC_OR_PROTECTED_FIELD", justification = "JSON API")
1012
public class GHKey {

‎src/main/java/org/kohsuke/github/GHLabel.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHLabel.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
/**
1010
* The type GHLabel.
1111
*
12+
* @author Kohsuke Kawaguchi
1213
* @see GHIssue#getLabels() GHIssue#getLabels()
1314
* @see GHRepository#listLabels() GHRepository#listLabels()
1415
*/

‎src/main/java/org/kohsuke/github/GHLicense.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHLicense.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@
3535
/**
3636
* The GitHub Preview API's license information
3737
*
38+
* @author Duncan Dickinson
3839
* @see GitHub#getLicense(String) GitHub#getLicense(String)
3940
* @see GHRepository#getLicense() GHRepository#getLicense()
4041
* @see <a href="https://developer.github.com/v3/licenses/">https://developer.github.com/v3/licenses/</a>

‎src/main/java/org/kohsuke/github/GHMarketplaceAccount.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHMarketplaceAccount.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/**
66
* Base class for Github Marketplace Account.
77
*
8+
* @author Paulo Miguel Almeida
89
* @see GitHub#getMyMarketplacePurchases()
910
* @see GHMarketplaceListAccountBuilder#createRequest()
1011
*/

‎src/main/java/org/kohsuke/github/GHMarketplaceAccountPlan.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHMarketplaceAccountPlan.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
/**
66
* A Github Marketplace Account Plan.
77
*
8+
* @author Paulo Miguel Almeida
89
* @see GHMarketplaceListAccountBuilder#createRequest()
910
*/
1011
public class GHMarketplaceAccountPlan extends GHMarketplaceAccount {

‎src/main/java/org/kohsuke/github/GHMarketplaceAccountType.java

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHMarketplaceAccountType.java
+1Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
/**
88
* GitHub Marketplace Account type.
99
*
10+
* @author Paulo Miguel Almeida
1011
* @see GHMarketplaceAccount
1112
*/
1213
public enum GHMarketplaceAccountType {

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.