mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-10 03:44:26 +00:00
[Android] Make the previous commit parlane approved in terms of boolean conditions.
This commit is contained in:
parent
988c168c2d
commit
f09cafb2be
@ -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) != '.')
|
||||||
|
Loading…
x
Reference in New Issue
Block a user