Skip to content

Commit

Permalink
Exposing Create and CreateAsync in collection that takes variable num…
Browse files Browse the repository at this point in the history
…ber of Creatables
  • Loading branch information
anuchandy committed Aug 8, 2016
1 parent 6625ef4 commit 652d622
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,9 @@ public boolean isCancelled() {
* @param call the call
*/
private void addCall(ServiceCall call) {
this.serviceCalls.add(call);
if (call != null) {
this.serviceCalls.add(call);
}
}
}
}

0 comments on commit 652d622

Please sign in to comment.