From 9be12ef2534e334e7629f966c62690d83d7e6b95 Mon Sep 17 00:00:00 2001 From: Jianghao Lu Date: Tue, 6 Sep 2016 16:57:19 -0700 Subject: [PATCH] Fix errors from merge --- .../src/main/java/com/microsoft/rest/ServiceCall.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-runtime/src/main/java/com/microsoft/rest/ServiceCall.java b/client-runtime/src/main/java/com/microsoft/rest/ServiceCall.java index 218a33f745fc7..960a016b88dd5 100644 --- a/client-runtime/src/main/java/com/microsoft/rest/ServiceCall.java +++ b/client-runtime/src/main/java/com/microsoft/rest/ServiceCall.java @@ -136,7 +136,7 @@ protected void setSubscription(Subscription subscription) { * @param result the service response returned. * @return true if successfully reported; false otherwise. */ - public boolean success(ServiceResponse result) { + public boolean success(T result) { return set(result); }