Added final keyword to the readers

This commit is contained in:
U-BASIS\dsmyda 2018-08-20 15:12:28 -04:00
parent ede32f6fe1
commit 60402ba2d2
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ import org.apache.poi.hssf.OldExcelFormatException;
* Reads excel files and implements the abstract reader api for interfacing with the * Reads excel files and implements the abstract reader api for interfacing with the
* content. Supports .xls and .xlsx files. * content. Supports .xls and .xlsx files.
*/ */
public class ExcelReader extends AbstractReader { public final class ExcelReader extends AbstractReader {
/* Boilerplate code */ /* Boilerplate code */
private final IngestServices services = IngestServices.getInstance(); private final IngestServices services = IngestServices.getInstance();
private final Logger logger = services.getLogger(ExcelReader.class.getName()); private final Logger logger = services.getLogger(ExcelReader.class.getName());

View File

@ -50,7 +50,7 @@ import org.sleuthkit.datamodel.TskCoreException;
@NbBundle.Messages({ @NbBundle.Messages({
"SQLiteReader.ReadSQLiteFiles.moduleName=SQLiteReader" "SQLiteReader.ReadSQLiteFiles.moduleName=SQLiteReader"
}) })
public class SQLiteReader extends AbstractReader { public final class SQLiteReader extends AbstractReader {
private final Connection connection; private final Connection connection;
private final IngestServices services = IngestServices.getInstance(); private final IngestServices services = IngestServices.getInstance();