Removed useless comment

This commit is contained in:
U-BASIS\dsmyda 2020-07-20 11:36:37 -04:00
parent 033935168f
commit 4e7695dc12

View File

@ -92,7 +92,6 @@ public class EncodingUtils {
// Get all guesses by Tika. These CharsetMatch's are ordered // Get all guesses by Tika. These CharsetMatch's are ordered
// by descending confidence (largest first). // by descending confidence (largest first).
if (tikaResults.length > 0) { if (tikaResults.length > 0) {
// Grab our top pick
CharsetMatch topPick = tikaResults[0]; CharsetMatch topPick = tikaResults[0];
if (topPick.getName().equalsIgnoreCase("IBM500") && tikaResults.length > 1) { if (topPick.getName().equalsIgnoreCase("IBM500") && tikaResults.length > 1) {