Merge "[OOM-CMPv2] Rename module and docker image"
authorPaweł Baniewski <pawel.baniewski@nokia.com>
Mon, 21 Sep 2020 07:37:51 +0000 (07:37 +0000)
committerGerrit Code Review <gerrit@onap.org>
Mon, 21 Sep 2020 07:37:51 +0000 (07:37 +0000)
certServicePostProcessor/src/main/java/org/onap/oom/certservice/postprocessor/common/FileTools.java

index 620d808..673a3f6 100644 (file)
@@ -31,7 +31,7 @@ public final class FileTools {
     private static final Logger LOGGER = LoggerFactory.getLogger(FileTools.class);
     private static final String BACKUP_EXTENSION = ".bak";
 
-    public void createBackup(File file) throws CreateBackupException {
+    public void createBackup(File file) {
         LOGGER.debug("Try to create a backup of the file: {}", file.getPath());
         File backupFile = new File(file.getAbsolutePath() + BACKUP_EXTENSION);
         try  {