Skip to content

Commit a42305d

Browse files
committed
Revert "Removed extraneous author javadocs"
This reverts commit 888abc9.
1 parent c22a718 commit a42305d

File tree

151 files changed

+241
-21
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+241
-21
lines changed

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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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

Lines 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
/**

0 commit comments

Comments
 (0)