Code Cleanup
This commit is contained in:
parent
686a52bf6c
commit
9003b83e68
1 changed files with 1 additions and 11 deletions
|
@ -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())
|
||||||
|
|
Loading…
Reference in a new issue