Fixed a small doc mistake

This commit is contained in:
U-BASIS\dsmyda 2018-12-19 17:15:40 -05:00
parent 6d7bf2e30c
commit b57f79bbf5

View File

@ -78,8 +78,6 @@ final class StringsTextExtractor implements TextExtractor {
* *
* @return A reader instance that content text can be obtained from * @return A reader instance that content text can be obtained from
* *
* @throws
* org.sleuthkit.autopsy.textextractors.TextExtractor.TextExtractorException
*/ */
@Override @Override
public InputStreamReader getReader() { public InputStreamReader getReader() {
@ -100,8 +98,8 @@ final class StringsTextExtractor implements TextExtractor {
* Determines how the extraction process will proceed given the settings * Determines how the extraction process will proceed given the settings
* stored in this context instance. * stored in this context instance.
* *
* See the StringsConfig class in the extractionconfigs package * See the StringsConfig class in the extractionconfigs package for
for available settings. * available settings.
* *
* @param context Lookup instance containing config classes * @param context Lookup instance containing config classes
*/ */
@ -132,7 +130,7 @@ final class StringsTextExtractor implements TextExtractor {
public boolean isSupported() { public boolean isSupported() {
return extractUTF8 || extractUTF16; return extractUTF8 || extractUTF16;
} }
/** /**
* Content input string stream reader/converter - given Content, extract * Content input string stream reader/converter - given Content, extract
* strings from it and return encoded bytes via read() * strings from it and return encoded bytes via read()