Fixed string in exception text

This commit is contained in:
U-BASIS\dsmyda 2018-09-18 14:09:01 -04:00
parent 4ce381fe4f
commit e56f28f813

View File

@ -113,7 +113,7 @@ class SqliteTextExtractor extends ContentTextExtractor {
throw new TextExtractorException( throw new TextExtractorException(
String.format("Encountered a FileReaderInitException" //NON-NLS String.format("Encountered a FileReaderInitException" //NON-NLS
+ " when trying to initialize a SQLiteReader" //NON-NLS + " when trying to initialize a SQLiteReader" //NON-NLS
+ " for Content with id: [%s], name: [%s].", //NON-NLS + " for AbstractFile with id: [%s], name: [%s].", //NON-NLS
source.getId(), source.getName())); source.getId(), source.getName()));
} }
} }