Added some println's to test console.

git-svn-id: svn://10.0.0.236/trunk@24040 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
beard%netscape.com 1999-03-13 03:08:02 +00:00
parent ed145eabba
commit 82d7689071

View File

@ -101,8 +101,9 @@ public class TrivialApplet extends Applet {
new ActionListener() {
public void actionPerformed(ActionEvent e) {
try {
URL apple = new URL(urlField.getText());
getAppletContext().showDocument(apple, "_new");
URL location = new URL(urlField.getText());
System.out.println("going to URL: " + location);
getAppletContext().showDocument(location, "_new");
} catch (MalformedURLException mfue) {
}
}