Logger.log("Opening: " + file.getName(), 1);
final String path = file.getAbsolutePath().toLowerCase();
// If the file does not end in .jbrofuzz, return
JBroFuzzFileFilter jbfff = new JBroFuzzFileFilter();
if (!path.endsWith(".jbrofuzz") || !jbfff.accept(file)) {
JOptionPane.showMessageDialog(fc,
"The file selected is not a valid .jbrofuzz file",
" JBroFuzz - Open ", JOptionPane.WARNING_MESSAGE);
return;
}