File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
ide-common/src/main/kotlin/org/digma/intellij/plugin/ui/service Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ class ErrorsViewService(project: Project) : AbstractViewService(project) {
174174 fun refreshErrorsModel () {
175175 val scope = model.scope
176176 if (scope is MethodScope ) {
177- Backgroundable .ensureBackground(project, " Refresh errors model " ) {
177+ Backgroundable .ensureBackground(project, " Refresh errors list " ) {
178178 updateErrorsModel(scope.getMethodInfo())
179179 }
180180 }
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class InsightsViewService(project: Project) : AbstractViewService(project) {
169169 fun refreshInsightsModel () {
170170 val scope = model.scope
171171 if (scope is MethodScope ) {
172- Backgroundable .ensureBackground(project, " Refresh insights model " ) {
172+ Backgroundable .ensureBackground(project, " Refresh insights list " ) {
173173 updateInsightsModel(scope.getMethodInfo())
174174 }
175175 }
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ class RefreshService(private val project: Project) {
2323 if (scope is MethodScope ) {
2424 val documentInfoContainer = DocumentInfoService .getInstance(project).getDocumentInfoByMethodInfo(scope.getMethodInfo())
2525
26- Backgroundable .ensureBackground(project, " Refresh insights and errors list " ) {
26+ Backgroundable .ensureBackground(project, " Refreshing insights" ) {
2727 val selectedDocument = selectedTextEditor?.document
2828
2929 if (selectedDocument != null ) {
You can’t perform that action at this time.
0 commit comments