[Android] Make the previous commit parlane approved in terms of boolean conditions.

This commit is contained in:
Lioncash 2013-08-22 02:57:31 -04:00
parent 988c168c2d
commit f09cafb2be

View File

@ -45,7 +45,7 @@ public final class FolderBrowser extends Fragment
try
{
String entryName = entry.getName();
boolean hasExtension = (entryName.lastIndexOf(".") != -1) ? true : false;
boolean hasExtension = (entryName.lastIndexOf(".") != -1);
// Skip hidden folders/files.
if (entryName.charAt(0) != '.')