package com.facetec.sdk; import java.io.File; import java.io.IOException; /* loaded from: classes.dex */ public interface mf { void c(File file) throws IOException; static { new mf() { // from class: com.facetec.sdk.mf.2 @Override // com.facetec.sdk.mf public final void c(File file) throws IOException { if (!file.delete() && file.exists()) { throw new IOException("failed to delete ".concat(String.valueOf(file))); } } }; } }