1
0
forked from PGL/Clyde

fixing the double throw before the merge

Signed-off-by: Debucquoy Anthony <d.tonitch@gmail.com>
This commit is contained in:
Debucquoy Anthony 2024-03-13 18:05:35 +01:00
parent 2a58c335f2
commit 5c7147bb17

View File

@ -56,12 +56,8 @@ public class StorageService {
public void delete(StorageFile file) throws SecurityException {
File f = new File(file.getUrl());
//Delete le fichier
try{
f.delete();
} catch (Exception e) {
throw new SecurityException();
}
f.delete();
//Delete l'entité
fileRepo.delete(file);
}