Code Cleanup

This commit is contained in:
Konloch 2021-07-01 15:23:09 -07:00
parent 686a52bf6c
commit 9003b83e68

View file

@ -14,19 +14,9 @@ import java.util.HashSet;
*/ */
public class FileChooser extends JFileChooser public class FileChooser extends JFileChooser
{ {
private final File filePath;
private final String title;
private final String description;
private final String[] extensions;
private final HashSet<String> extensionSet = new HashSet<>();
public FileChooser(File filePath, String title, String description, String... extensions) public FileChooser(File filePath, String title, String description, String... extensions)
{ {
this.filePath = filePath; HashSet<String> extensionSet = new HashSet<>(Arrays.asList(extensions));
this.title = title;
this.description = description;
this.extensions = extensions;
this.extensionSet.addAll(Arrays.asList(extensions));
try { try {
if (filePath.exists()) if (filePath.exists())