Merge pull request #406

... with some further changes
This commit is contained in:
Kohsuke Kawaguchi
2018-01-13 09:47:37 -08:00
9 changed files with 247 additions and 114 deletions

View File

@@ -135,6 +135,10 @@ class Requester {
return _with(key, value);
}
public Requester with(String key, long value) {
return _with(key, value);
}
public Requester with(String key, Integer value) {
if (value!=null)
_with(key, value);