diff options
author | ezhil <ezhrajam@in.ibm.com> | 2018-11-27 17:05:37 +0530 |
---|---|---|
committer | Ezhilarasi R <ezhrajam@in.ibm.com> | 2018-11-27 11:37:48 +0000 |
commit | f2a8be2ff5e94c1d0f008cc61be38d14597d3538 (patch) | |
tree | 43f0b969734ab377403a7e921b95ee755d9e1e5b | |
parent | 66672fd9b9f6b28b3624d06f731d5097e6a186c8 (diff) |
Fixed Sonar issue in FileRecorder
Removed unused imports
Issue-ID: CCSDK-755
Change-Id: I1e303a0490e0da0f1ca998197524d4400ad80eb5
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
-rw-r--r-- | sli/recording/src/main/java/org/onap/ccsdk/sli/core/sli/recording/FileRecorder.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sli/recording/src/main/java/org/onap/ccsdk/sli/core/sli/recording/FileRecorder.java b/sli/recording/src/main/java/org/onap/ccsdk/sli/core/sli/recording/FileRecorder.java index ac3dbd2a9..37e4fe877 100644 --- a/sli/recording/src/main/java/org/onap/ccsdk/sli/core/sli/recording/FileRecorder.java +++ b/sli/recording/src/main/java/org/onap/ccsdk/sli/core/sli/recording/FileRecorder.java @@ -5,6 +5,8 @@ * Copyright (C) 2017 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. * You may obtain a copy of the License at @@ -24,7 +26,6 @@ package org.onap.ccsdk.sli.core.sli.recording; import java.io.File; import java.io.FileWriter; import java.io.PrintWriter; -import java.io.IOException; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.Date; |