Remove unnecessary parameter from AbstractFile.save

This commit is contained in:
Richard Cordovano 2018-01-05 08:57:18 -05:00
parent 68a2948a39
commit 1c1f85b358

View File

@ -144,7 +144,7 @@ final class FileIngestPipeline {
if (!this.job.isCancelled()) {
// Save any properties that have not already been saved to the database
try{
file.save(Case.getCurrentCase().getSleuthkitCase());
file.save();
} catch (TskCoreException ex){
Logger.getLogger(FileIngestPipeline.class.getName()).log(Level.SEVERE, "Failed to save data for file " + file.getId(), ex); //NON-NLS
}