I have inserted some Url in a Javadoc comments in the IntelliJ Idea like this
/**
* @see <a href="http://stackoverflow.com/q/10173996/932307</a>
* @see <a href="http://stackoverflow.com/a/9118564/932307"</a>
*/
and I downloaded the Hyperlink plugin. The idea is to open the webpage in default browser when Ctrl+click on the link.
When I press Ctrl and hover the mouse over the url the mouse pointer changes but when I click on the link a message comes "cannot find deceleration to go to" and url is not opened in the default browser.
How can I make this work?
[Edit1]
I changed the tag to
/**
* @see <a href="http://stackoverflow.com/q/10173996/932307">http://stackoverflow.com/q/10173996/932307</a>
* @see <a href="http://stackoverflow.com/a/9118564/932307">http://stackoverflow.com/a/9118564/932307</a>
*/
on clicking it still gives "cannot find deceleration to go to"