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 cda27d5

Browse filesBrowse files
committed
This field should be still final
1 parent c9b5074 commit cda27d5
Copy full SHA for cda27d5

File tree

Expand file treeCollapse file tree

2 files changed

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

2 files changed

+2
-3
lines changed

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHCommitSearchBuilder.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package org.kohsuke.github;
22

33
import java.io.IOException;
4-
import java.util.Locale;
54

65
import org.apache.commons.lang.StringUtils;
76

@@ -15,7 +14,7 @@
1514
public class GHCommitSearchBuilder extends GHSearchBuilder<GHCommit> {
1615
/*package*/ GHCommitSearchBuilder(GitHub root) {
1716
super(root,CommitSearchResult.class);
18-
req = req.withPreview(Previews.CLOAK);
17+
req.withPreview(Previews.CLOAK);
1918
}
2019

2120
/**

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/GHQueryBuilder.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*/
88
public abstract class GHQueryBuilder<T> {
99
protected final GitHub root;
10-
protected Requester req;
10+
protected final Requester req;
1111

1212
/*package*/ GHQueryBuilder(GitHub root) {
1313
this.root = root;

0 commit comments

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