Systray: Drop unused BrowserChooser

This commit is contained in:
zzz
2021-05-20 09:04:26 -04:00
parent 9036aa84f6
commit 6926f5769e

View File

@@ -1,30 +0,0 @@
/*
* I2P - An anonymous, secure, and fully-distributed communication network.
*
* BrowserChooser.java
* 2004 The I2P Project
* http://www.i2p.net
* This code is public domain.
*/
package net.i2p.apps.systray;
import java.awt.FileDialog;
import java.awt.Frame;
/**
* A simple file chooser dialog.
*
* @author hypercubus
*/
public class BrowserChooser extends FileDialog {
public BrowserChooser(Frame owner, String windowTitle) {
super(owner, windowTitle);
initialize();
}
public void initialize(){
this.setVisible(true);
}
}