diff options
author | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-12-01 15:28:25 +0100 |
---|---|---|
committer | Claudio David Gasparini <claudio.gasparini@pantheon.tech> | 2020-12-02 08:17:25 +0100 |
commit | b1740000e774ca633309e640f190cdcd74aa8241 (patch) | |
tree | a9d5a861b4f056c661d3742a534a9635838aa064 /cps-service/src/test/java | |
parent | c8f2136670321731ec97d027d427af2ec9fd1077 (diff) |
Fix checkstyle violations for "final" keyword
Issue-ID: CPS-119
Signed-off-by: Claudio David Gasparini <claudio.gasparini@pantheon.tech>
Change-Id: I871a361937ed30047fe89ff2d2b17499cddad56c
Diffstat (limited to 'cps-service/src/test/java')
-rw-r--r-- | cps-service/src/test/java/org/onap/cps/TestUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cps-service/src/test/java/org/onap/cps/TestUtils.java b/cps-service/src/test/java/org/onap/cps/TestUtils.java index 07647520b0..3a2a4e3a55 100644 --- a/cps-service/src/test/java/org/onap/cps/TestUtils.java +++ b/cps-service/src/test/java/org/onap/cps/TestUtils.java @@ -35,7 +35,7 @@ public class TestUtils { * @throws IOException when there is an IO issue */ public static String getResourceFileContent(final String filename) throws IOException { - File file = new File(ClassLoader.getSystemClassLoader().getResource(filename).getFile()); + final File file = new File(ClassLoader.getSystemClassLoader().getResource(filename).getFile()); return new String(Files.readAllBytes(file.toPath())); } } |