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 0e5ffda

Browse filesBrowse files
committed
Release failed due to javadoc errors
1 parent cdf6f18 commit 0e5ffda
Copy full SHA for 0e5ffda

File tree

Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+2
-2
lines changed

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHPullRequestReviewBuilder.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public GHPullRequestReviewBuilder body(String body) {
4242
/**
4343
* The review action you want to perform. The review actions include: APPROVE, REQUEST_CHANGES, or COMMENT.
4444
* By leaving this blank, you set the review action state to PENDING,
45-
* which means you will need to {@linkplain GHPullRequestReview#submit() submit the pull request review} when you are ready.
45+
* which means you will need to {@linkplain GHPullRequestReview#submit(String, GHPullRequestReviewEvent) submit the pull request review} when you are ready.
4646
*/
4747
public GHPullRequestReviewBuilder event(GHPullRequestReviewEvent event) {
4848
builder.with("event",event.action());

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/RateLimitHandler.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public abstract class RateLimitHandler {
3737
public void onError(IOException e, HttpURLConnection uc) throws IOException {
3838
try {
3939
Thread.sleep(parseWaitTime(uc));
40-
} catch (InterruptedException _) {
40+
} catch (InterruptedException x) {
4141
throw (InterruptedIOException)new InterruptedIOException().initCause(e);
4242
}
4343
}

0 commit comments

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