File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,4 +25,3 @@ export const ISSUES_MARKERS_DECORATION_TYPE: { [key: string]: string } = {
2525} ;
2626
2727export const ISSUE_ID_SPLITTER = "%2Fdc%2F" ;
28- export const ISSUE_MARKER_HELPER_MSG = "Issue helper" ;
Original file line number Diff line number Diff line change 66 IGNORE_ISSUE_BASE_COMMENT_TEXT ,
77 FILE_IGNORE_ISSUE_BASE_COMMENT_TEXT ,
88 IGNORE_ISSUE_REASON_TIP ,
9- ISSUE_ID_SPLITTER ,
10- ISSUE_MARKER_HELPER_MSG
9+ ISSUE_ID_SPLITTER
1110} from "../constants/analysis" ;
1211
1312export const createDeepCodeSeveritiesMap = ( ) => {
@@ -227,10 +226,7 @@ export const createIssueRelatedInformation = ({
227226 for ( const position of markerPositions ) {
228227 const relatedInfo = new vscode . DiagnosticRelatedInformation (
229228 new vscode . Location ( fileUri , createIssueCorrectRange ( position ) ) ,
230- // temporary issue marker message
231- ISSUE_MARKER_HELPER_MSG
232- // to get marker msg from issue message use:
233- // createIssueMarkerMsg(message, markerMsgIdxs)
229+ createIssueMarkerMsg ( message , markerMsgIdxs )
234230 ) ;
235231 relatedInfoList . push ( relatedInfo ) ;
236232 }
You can’t perform that action at this time.
0 commit comments