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); }