mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 20:58:03 +00:00
filter out .DS_Store file name when looking for skins (created by Mac OS X Finder)
This commit is contained in:
@@ -67,6 +67,7 @@ public class FSkin {
|
||||
} else {
|
||||
for (int i = 0; i < children.length; i++) {
|
||||
if (children[i].equalsIgnoreCase(".svn")) { continue; }
|
||||
if (children[i].equalsIgnoreCase(".DS_Store")) { continue; }
|
||||
mySkins.add(children[i]);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user