Merge "OAUTHService.java-sonar fix"
authorJonathan Gathman <jonathan.gathman@att.com>
Wed, 6 Nov 2019 12:41:48 +0000 (12:41 +0000)
committerGerrit Code Review <gerrit@onap.org>
Wed, 6 Nov 2019 12:41:48 +0000 (12:41 +0000)
auth/auth-oauth/src/main/java/org/onap/aaf/auth/oauth/service/OAuthService.java

index 4e1dd5b..a13959f 100644 (file)
@@ -128,7 +128,8 @@ public class OAuthService {
         odd.refresh = AAFToken.toToken(UUID.randomUUID());
         odd.active = true;
         long exp;
-        odd.expires = new Date(exp=(System.currentTimeMillis()+TOK_EXP));
+        exp=(System.currentTimeMillis()+TOK_EXP);
+        odd.expires = new Date(exp);
         odd.exp_sec = exp/1000;
         odd.req_ip = trans.ip();