mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 06:32:10 +02:00
Fixed details not showing for regular problems
This commit is contained in:
parent
9594eeb577
commit
95d8915fee
1 changed files with 1 additions and 1 deletions
|
@ -80,7 +80,7 @@ public abstract class AbstractCodanProblemDetailsProvider {
|
|||
String href = getLocationHRef();
|
||||
String link = href.replaceFirst("^file:", ""); //$NON-NLS-1$ //$NON-NLS-2$
|
||||
link = link.replaceFirst("#(\\d+)$", ":$1"); //$NON-NLS-1$//$NON-NLS-2$
|
||||
return "<a href=\"" + href + "\">" + link + "</a>\n" + message; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
|
||||
return "<a href=\"" + href + "\">" + link + "</a> \n" + message; //$NON-NLS-1$//$NON-NLS-2$ //$NON-NLS-3$
|
||||
}
|
||||
protected String getLocationHRef() {
|
||||
return CodanEditorUtility.getLocationHRef(marker);
|
||||
|
|
Loading…
Add table
Reference in a new issue