Skip to content

Commit a136c5b

Browse files
committed
revert wrong formatting
Former-commit-id: 8a45fb2
1 parent 1c271b8 commit a136c5b

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/main/java/com/google/gcloud/RetryHelper.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package com.google.gcloud;
22

3+
import static com.google.common.base.Preconditions.checkNotNull;
4+
import static java.lang.Math.*;
5+
import static java.util.concurrent.TimeUnit.MILLISECONDS;
6+
37
import com.google.common.annotations.VisibleForTesting;
48
import com.google.common.base.MoreObjects;
59
import com.google.common.base.MoreObjects.ToStringHelper;
@@ -10,10 +14,6 @@
1014
import java.util.concurrent.Callable;
1115
import java.util.logging.Logger;
1216

13-
import static com.google.common.base.Preconditions.checkNotNull;
14-
import static java.lang.Math.*;
15-
import static java.util.concurrent.TimeUnit.MILLISECONDS;
16-
1717
/**
1818
* Utility class for retrying operations.
1919
* For more details about the parameters, see {@link RetryParams}.
@@ -157,7 +157,7 @@ private V doRetry() throws RetryHelperException {
157157
Exception exception;
158158
try {
159159
V value = callable.call();
160-
if (attemptNumber > 1) {
160+
if (attemptNumber > 1) {
161161
log.fine(this + ": attempt #" + attemptNumber + " succeeded");
162162
}
163163
return value;

0 commit comments

Comments
 (0)