Warning fix.

git-svn-id: http://svn.3splooges.com/romraider-arch/trunk@39 d2e2e1cd-ba16-0410-be16-b7c4453c7c2d
This commit is contained in:
drees 2006-06-28 08:14:49 +00:00
parent fbef179dd5
commit 20649efb3e
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ public class BrowserControl {
if (windows) {
// cmd = 'rundll32 url.dll,FileProtocolHandler http://...'
cmd = WIN_PATH + " " + WIN_FLAG + " " + url;
Process p = Runtime.getRuntime().exec(cmd);
Runtime.getRuntime().exec(cmd);
}
else {
cmd = UNIX_PATH + " " + UNIX_FLAG + "(" + url + ")";