mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 14:19:46 -06:00
[Android] Make the previous commit parlane approved in terms of boolean conditions.
This commit is contained in:
@ -45,7 +45,7 @@ public final class FolderBrowser extends Fragment
|
|||||||
try
|
try
|
||||||
{
|
{
|
||||||
String entryName = entry.getName();
|
String entryName = entry.getName();
|
||||||
boolean hasExtension = (entryName.lastIndexOf(".") != -1) ? true : false;
|
boolean hasExtension = (entryName.lastIndexOf(".") != -1);
|
||||||
|
|
||||||
// Skip hidden folders/files.
|
// Skip hidden folders/files.
|
||||||
if (entryName.charAt(0) != '.')
|
if (entryName.charAt(0) != '.')
|
||||||
|
Reference in New Issue
Block a user