Skip to content

Commit

Permalink
Merge pull request Azure#44 from Azure/sdk_1015
Browse files Browse the repository at this point in the history
[Automatic PR] SDK changes from pull request Azure#1015
  • Loading branch information
jianghaolu committed Aug 23, 2016
2 parents 7c46138 + 44a1519 commit 6b54fd6
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,8 +165,10 @@ public boolean isCancelled() {
*
* @param call the call
*/
private void addCall(ServiceCall<?> call) {
this.serviceCalls.add(call);
private void addCall(ServiceCall call) {
if (call != null) {
this.serviceCalls.add(call);
}
}
}
}

0 comments on commit 6b54fd6

Please sign in to comment.