mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-10 08:09:26 +01: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
|
||||
{
|
||||
String entryName = entry.getName();
|
||||
boolean hasExtension = (entryName.lastIndexOf(".") != -1) ? true : false;
|
||||
boolean hasExtension = (entryName.lastIndexOf(".") != -1);
|
||||
|
||||
// Skip hidden folders/files.
|
||||
if (entryName.charAt(0) != '.')
|
||||
|
Loading…
x
Reference in New Issue
Block a user