summaryrefslogtreecommitdiffstats
path: root/cadi
diff options
context:
space:
mode:
authorThugutla Sailakshmi <tsaila10@in.ibm.com>2019-07-21 21:20:07 +0530
committerThugutla Sailakshmi <tsaila10@in.ibm.com>2019-07-21 21:24:52 +0530
commitb43a8f660fe4602008b50c835b5bde0f2d4c93ae (patch)
tree958c6b1229f548f3c907dc4000fb200ab8a25731 /cadi
parent5b77b6489dfb644a901e2640615a32d78f533351 (diff)
AAF-892- move the variable to follow rules
move the variables according to the rules Issue-ID: AAF-882 Change-Id: Iaaa41f54eb32f6dc793fa7a63b87927158028a7f Signed-off-by: Thugutla Sailakshmi <tsaila10@in.ibm.com>
Diffstat (limited to 'cadi')
-rw-r--r--cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java b/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
index 994e3250..6e11c3c7 100644
--- a/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
+++ b/cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java
@@ -3,6 +3,8 @@
* org.onap.aaf
* ===========================================================================
* Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
+ *
+ * Modifications Copyright (C) 2018 IBM.
* ===========================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -43,6 +45,7 @@ import org.onap.aaf.cadi.util.Split;
public class PropAccess implements Access {
// Sonar says cannot be static... it's ok. not too many PropAccesses created.
private final SimpleDateFormat iso8601 = newISO8601();
+ private Symm symm;
public static SimpleDateFormat newISO8601() {
return new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ");
@@ -50,7 +53,7 @@ public class PropAccess implements Access {
public static final Level DEFAULT = Level.AUDIT;
- private Symm symm;
+
private int level;
private Properties props;
private List<String> recursionProtection = null;