Skip to content

Commit

Permalink
Commented out createImage call that doesn't work on 1.1 class libraries.
Browse files Browse the repository at this point in the history
Will be rewritten later to be portable.  --ryan.
  • Loading branch information
icculus committed Sep 27, 1999
1 parent 09d45c2 commit e1073ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TobySplash.java
Expand Up @@ -34,7 +34,7 @@ public class TobySplash extends JDialog implements ActionListener
public TobySplash(String filename)
{
super();
img = Toolkit.getDefaultToolkit().createImage(filename);
// img = Toolkit.getDefaultToolkit().createImage(filename);
timer = new Timer(5000, this);
timer.setRepeats(false);
setSize(500, 500);
Expand Down

0 comments on commit e1073ed

Please sign in to comment.