You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jclouds.apache.org by ga...@apache.org on 2013/12/13 02:54:14 UTC

git commit: Prefer Math.max over Ints.max to avoid varargs

Updated Branches:
  refs/heads/master 91906b90b -> 8bf23069d


Prefer Math.max over Ints.max to avoid varargs


Project: http://git-wip-us.apache.org/repos/asf/jclouds/repo
Commit: http://git-wip-us.apache.org/repos/asf/jclouds/commit/8bf23069
Tree: http://git-wip-us.apache.org/repos/asf/jclouds/tree/8bf23069
Diff: http://git-wip-us.apache.org/repos/asf/jclouds/diff/8bf23069

Branch: refs/heads/master
Commit: 8bf23069d925915f905c7be05082d15f969b0f7b
Parents: 91906b9
Author: Andrew Gaul <ga...@apache.org>
Authored: Thu Dec 12 17:53:34 2013 -0800
Committer: Andrew Gaul <ga...@apache.org>
Committed: Thu Dec 12 17:53:34 2013 -0800

----------------------------------------------------------------------
 core/src/main/java/org/jclouds/rest/RetryAfterException.java | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/jclouds/blob/8bf23069/core/src/main/java/org/jclouds/rest/RetryAfterException.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/jclouds/rest/RetryAfterException.java b/core/src/main/java/org/jclouds/rest/RetryAfterException.java
index 197770d..d44e9e5 100644
--- a/core/src/main/java/org/jclouds/rest/RetryAfterException.java
+++ b/core/src/main/java/org/jclouds/rest/RetryAfterException.java
@@ -16,8 +16,6 @@
  */
 package org.jclouds.rest;
 
-import com.google.common.primitives.Ints;
-
 /**
  * This exception is raised when an http endpoint returns with a response
  * telling the caller to make the same request after a certain period of time.
@@ -44,7 +42,7 @@ public class RetryAfterException extends RuntimeException {
     */
    public RetryAfterException(String message, int seconds) {
       super(message);
-      this.seconds = Ints.max(seconds, 0);
+      this.seconds = Math.max(seconds, 0);
    }
 
    /**
@@ -56,7 +54,7 @@ public class RetryAfterException extends RuntimeException {
     *           retry after delta. Negative values are converted to zero
     */
    public RetryAfterException(Throwable cause, int seconds) {
-      super(defaultMessage(seconds = Ints.max(seconds, 0)), cause);
+      super(defaultMessage(seconds = Math.max(seconds, 0)), cause);
       this.seconds = seconds;
    }
    
@@ -83,7 +81,7 @@ public class RetryAfterException extends RuntimeException {
     */
    public RetryAfterException(String message, Throwable cause, int seconds) {
       super(message, cause);
-      this.seconds = Ints.max(seconds, 0);
+      this.seconds = Math.max(seconds, 0);
    }
 
    /**