add Requester#with override for long value

This commit is contained in:
Sébastien Lesaint
2018-01-08 15:29:22 +01:00
parent fa16261d7a
commit 892d305165

View File

@@ -134,6 +134,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);