mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2025-01-03 23:04:08 +01:00
Don't show extra file in game list.
This commit is contained in:
parent
1106ddd6bb
commit
de3f45044f
1 changed files with 3 additions and 3 deletions
|
@ -31,9 +31,9 @@ public class GameListAdapter implements ListAdapter {
|
||||||
public int getCount() {
|
public int getCount() {
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for ( String file : m_context.fileList() ) {
|
for ( String file : m_context.fileList() ) {
|
||||||
//if ( file.endsWith(XWConstants.GAME_EXTN) ) {
|
if ( ! file.endsWith(XWConstants.GAME_EXTN) ) {
|
||||||
++count;
|
++count;
|
||||||
//}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
|
|
Loading…
Reference in a new issue