IDEA-60813 View External Documentation doesn't work at the member level

This commit is contained in:
Alexander Doroshko
2011-12-07 21:26:25 +04:00
parent 6278736f68
commit 2e32574bdf
@@ -105,7 +105,8 @@ public class BrowserUtil {
else {
commandLine = new String[command.length + 1];
System.arraycopy(command, 0, commandLine, 0, command.length);
commandLine[commandLine.length - 1] = escapeUrl(urlString);
commandLine[commandLine.length - 1] = SystemInfo.isMac && isUseDefaultBrowser() ? escapeUrl(redirectUrl(url, urlString))
: escapeUrl(urlString);
}
Runtime.getRuntime().exec(commandLine);
if (LOG.isDebugEnabled()) {