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 892d305

Browse filesBrowse files
committed
add Requester#with override for long value
1 parent fa16261 commit 892d305
Copy full SHA for 892d305

File tree

Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+4
-0
lines changed

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

Copy file name to clipboardExpand all lines: src/main/java/org/kohsuke/github/Requester.java
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,10 @@ public Requester with(String key, int value) {
134134
return _with(key, value);
135135
}
136136

137+
public Requester with(String key, long value) {
138+
return _with(key, value);
139+
}
140+
137141
public Requester with(String key, Integer value) {
138142
if (value!=null)
139143
_with(key, value);

0 commit comments

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