Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[Android] Make the previous commit parlane approved in terms of boole…
…an conditions.
  • Loading branch information
lioncash committed Aug 22, 2013
1 parent 988c168 commit f09cafb
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -45,7 +45,7 @@ private void Fill(File currDir)
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) != '.')
Expand Down

0 comments on commit f09cafb

Please sign in to comment.