diff options
author | Jonathan Gathman <jonathan.gathman@att.com> | 2019-08-06 23:44:39 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-08-06 23:44:39 +0000 |
commit | c42c3f014a3a84bbb9f12f690fdf2a840f9138a4 (patch) | |
tree | 1b8693bb5eea85344513802bb6422ccd78fc21aa /cadi/core/src/main | |
parent | cdf53cfe6903670884e983463375077ea7e8d470 (diff) | |
parent | b43a8f660fe4602008b50c835b5bde0f2d4c93ae (diff) |
Merge "AAF-892- move the variable to follow rules"
Diffstat (limited to 'cadi/core/src/main')
-rw-r--r-- | cadi/core/src/main/java/org/onap/aaf/cadi/PropAccess.java | 5 |
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 26aa98cb..9f4b4b9f 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. @@ -45,6 +47,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"); @@ -52,7 +55,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; |