mirror of
https://github.com/magefree/mage.git
synced 2025-12-20 10:40:06 -08:00
fix updater
This commit is contained in:
parent
def0260b9d
commit
3f502aedae
2 changed files with 4 additions and 4 deletions
|
|
@ -18,10 +18,10 @@ public class FileHelper {
|
|||
/**
|
||||
* Filters out dirs.
|
||||
*/
|
||||
private static final FilenameFilter anyFileFilter = new FilenameFilter() {
|
||||
private static final FileFilter anyFileFilter = new FileFilter() {
|
||||
@Override
|
||||
public boolean accept(File dir, String name) {
|
||||
return dir.isFile();
|
||||
public boolean accept(File f) {
|
||||
return f.isFile();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue