Changed the name of FileFinder to FileUtil

This commit is contained in:
Ziver Koc 2010-07-01 16:22:02 +00:00
parent a9bc9997ca
commit ce83415d1c
19 changed files with 315 additions and 59 deletions

View file

@ -7,7 +7,7 @@ import java.io.IOException;
import javax.imageio.ImageIO;
import javax.swing.JPanel;
import zutil.FileFinder;
import zutil.FileUtil;
import zutil.image.ImageUtil;
/**
@ -35,7 +35,7 @@ public class JImagePanel extends JPanel {
* @param img is the path to the image
*/
public JImagePanel(String img) throws IOException {
this(ImageIO.read( FileFinder.find( img ) ));
this(ImageIO.read( FileUtil.find( img ) ));
}
/**