mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
[Android] Make the previous commit parlane approved in terms of boolean conditions.
This commit is contained in:
parent
988c168c2d
commit
f09cafb2be
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue