Skip to content

Commit 0b159d8

Browse files
committed
Fixed checkstyle violation;
1 parent 731e841 commit 0b159d8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

client-runtime/src/main/java/com/microsoft/rest/ServiceFuture.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,8 @@ protected void setSubscription(Subscription subscription) {
201201
* @return true if successfully reported; false otherwise.
202202
*/
203203
public boolean success(T result) {
204-
return valueSet = set(result);
204+
valueSet = set(result);
205+
return valueSet;
205206
}
206207

207208
@Override

0 commit comments

Comments
 (0)