diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-10-08 12:04:22 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-10-08 12:04:22 +0000 |
commit | 1bb8d7f7983ce125f413b8175181c2713ea1e33f (patch) | |
tree | 58ab4556dd7366bae4b2a595a01c6de417762572 /auth/auth-batch/src | |
parent | 59ac595e49ae558c484ec61ea7db756a3c996714 (diff) | |
parent | 7f12f02e99254b462c6d25c4f9d2723b917f8e5e (diff) |
Merge "Sonar Fix: Pending.java"
Diffstat (limited to 'auth/auth-batch/src')
-rw-r--r-- | auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/approvalsets/Pending.java | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/approvalsets/Pending.java b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/approvalsets/Pending.java index eed67338..9a666981 100644 --- a/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/approvalsets/Pending.java +++ b/auth/auth-batch/src/main/java/org/onap/aaf/auth/batch/approvalsets/Pending.java @@ -3,6 +3,8 @@ * org.onap.aaf * =========================================================================== * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved. + * + * Modifications Copyright (C) 2019 IBM. * =========================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -36,12 +38,12 @@ public class Pending { /** * Use this constructor to indicate when last Notified - * @param last_notified + * @param lastNotified */ - public Pending(Date last_notified) { + public Pending(Date lastNotified) { qty = 1; - hasNew = last_notified==null; - earliest = last_notified; + hasNew = lastNotified==null; + earliest = lastNotified; } /** |