File tree Expand file tree Collapse file tree
plugin/src/main/java/io/snyk
eclipse/plugin/views/snyktoolview
languageserver/protocolextension Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public interface ISnykToolView {
8383 /**
8484 * Refreshes the SummaryPanel
8585 */
86- abstract void refreshSummary (String status );
86+ abstract void updateSummary (String status );
8787
8888 /**
8989 * Returns the tree root
Original file line number Diff line number Diff line change @@ -334,7 +334,7 @@ public void refreshBrowser(String status) {
334334 };
335335
336336 @ Override
337- public void refreshSummary (String summary ) {
337+ public void updateSummary (String summary ) {
338338 Display .getDefault ().asyncExec (() -> {
339339 this .summaryBrowserHandler .setBrowserText (summary );
340340 });
Original file line number Diff line number Diff line change @@ -385,7 +385,7 @@ public void snykScan(SnykScanParam param) {
385385 @ JsonNotification (value = LsConstants .SNYK_SCAN_SUMMARY )
386386 public void updateSummaryPanel (SummaryPanelParams summary ) {
387387 openToolView ();
388- this .toolView .refreshSummary (summary .getSummary ());
388+ this .toolView .updateSummary (summary .getSummary ());
389389 }
390390
391391 @ JsonNotification (value = LsConstants .SNYK_FOLDER_CONFIG )
You can’t perform that action at this time.
0 commit comments