diff options
author | Dan Timoney <dtimoney@att.com> | 2018-11-28 22:33:52 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-11-28 22:33:52 +0000 |
commit | 979fe9b361db9dbd810827ef8dcc65ab5a138736 (patch) | |
tree | 128f4c9b8e1df373cbc9ae039b973b068b3b08e6 | |
parent | 081eb693b595ec59a0a0f2957ae072f2300461c9 (diff) | |
parent | f2a8be2ff5e94c1d0f008cc61be38d14597d3538 (diff) |
Merge "Fixed Sonar issue in FileRecorder"
-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 ac3dbd2a..37e4fe87 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; |