Skip to content

Commit

Permalink
Further fixes to line width
Browse files Browse the repository at this point in the history
  • Loading branch information
kevincdeng committed Aug 6, 2015
1 parent 545072d commit 9437b0c
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,8 @@ public void onSuccess(UserRecordResult result) {
@Override
public void onFailure(Throwable t) {
if (t instanceof UserRecordFailedException) {
UserRecordFailedException e = (UserRecordFailedException) t;
UserRecordFailedException e =
(UserRecordFailedException) t;
UserRecordResult result = e.getResult();

String errorList =
Expand All @@ -78,7 +79,8 @@ public void onFailure(Throwable t) {
"Delay after prev attempt: %d ms, "
+ "Duration: %d ms, Code: %s, "
+ "Message: %s",
a.getDelay(), a.getDuration(), a.getErrorCode(),
a.getDelay(), a.getDuration(),
a.getErrorCode(),
a.getErrorMessage()))
.collect(Collectors.toList()), "\n");

Expand Down

0 comments on commit 9437b0c

Please sign in to comment.