diff options
author | Keong Lim <keong.lim@huawei.com> | 2019-03-21 15:34:37 +1100 |
---|---|---|
committer | Keong Lim <keong.lim@huawei.com> | 2019-04-11 13:47:44 +1000 |
commit | b246959cee2989220eff5d3e92028c685a201b67 (patch) | |
tree | 1a1d90cbd656b8a8f9b7992b8e536a6fbe458a53 /aai-annotations/src/test/java/org | |
parent | 4b76b6de0d39d6c5aca8635c78574c520f1053e9 (diff) |
AAI-1523 Batch reformat aai-annotations
Use maven plugins from AAI-2198 to do batch reformat of aai-annotations
to consistent code style.
Change-Id: If1793b45f688d86b47771c154843be6f071f1df7
Issue-ID: AAI-1523
Signed-off-by: Keong Lim <keong.lim@huawei.com>
Diffstat (limited to 'aai-annotations/src/test/java/org')
-rw-r--r-- | aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java b/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java index a518e0c2..e41ae284 100644 --- a/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java +++ b/aai-annotations/src/test/java/org/onap/aai/annotations/AnnotationsTest.java @@ -8,7 +8,7 @@ * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * - * http://www.apache.org/licenses/LICENSE-2.0 + * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, @@ -17,6 +17,7 @@ * limitations under the License. * ============LICENSE_END========================================================= */ + package org.onap.aai.annotations; import org.onap.aai.annotations.Metadata; @@ -26,23 +27,24 @@ public class AnnotationsTest { public AnnotationsTest() { } - @Metadata(isKey = false, - description = "", - nameProps = "", - indexedProps = "", - dependentOn = "", - container = "", - namespace = "", - defaultValue = "", - searchable = "", - uniqueProps = "", - requiredProps = "", - uriTemplate = "", - extendsFrom = "", - isAbstract = "", - alternateKeys1 = "", - maximumDepth = "", - crossEntityReference = "") + @Metadata( + isKey = false, + description = "", + nameProps = "", + indexedProps = "", + dependentOn = "", + container = "", + namespace = "", + defaultValue = "", + searchable = "", + uniqueProps = "", + requiredProps = "", + uriTemplate = "", + extendsFrom = "", + isAbstract = "", + alternateKeys1 = "", + maximumDepth = "", + crossEntityReference = "") public void testAnnotation() { } } |