22 lines
612 B
Java
22 lines
612 B
Java
package o;
|
|
|
|
import java.io.File;
|
|
|
|
/* renamed from: o.gjo, reason: case insensitive filesystem */
|
|
/* loaded from: classes6.dex */
|
|
public abstract class AbstractC15194gjo implements InterfaceC15199gjt {
|
|
@Override // o.InterfaceC15199gjt, java.io.FileFilter
|
|
public boolean accept(File file) {
|
|
return accept(file.getParentFile(), file.getName());
|
|
}
|
|
|
|
@Override // o.InterfaceC15199gjt, java.io.FilenameFilter
|
|
public boolean accept(File file, String str) {
|
|
return accept(new File(file, str));
|
|
}
|
|
|
|
public String toString() {
|
|
return getClass().getSimpleName();
|
|
}
|
|
}
|