Comment clarification.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3895 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2006-02-28 01:06:11 +00:00
parent 282b04930f
commit c6eb691cdc
@@ -38,7 +38,7 @@ public class BrowserUtil
*
* @param url the URL to display in an external browser.
* @param listener a listener to be notified if we failed to launch the
* browser.
* browser. <em>Note:</em> it will not be notified of success.
*/
public static void browseURL (URL url, ResultListener listener)
{
@@ -50,7 +50,7 @@ public class BrowserUtil
*
* @param url the URL to display in an external browser.
* @param listener a listener to be notified if we failed to launch the
* browser.
* browser. <em>Note:</em> it will not be notified of success.
* @param genagent the path to the browser to execute on non-Windows,
* non-MacOS.
*/
@@ -92,7 +92,7 @@ public class BrowserUtil
protected static class BrowserTracker extends Thread
{
public BrowserTracker(Process process, URL url, ResultListener rl) {
public BrowserTracker (Process process, URL url, ResultListener rl) {
super("BrowserLaunchWaiter");
setDaemon(true);
_process = process;