You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vscode-extensions/vscode-spring-boot/lib/explorer/structure-tree-manager.ts
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,10 @@ export class StructureManager {
58
58
returnthis._rootElementsRequest;
59
59
}
60
60
61
-
// Serves 2 purposes: non UI trigerred refresh as a result of the index update and a UI trigerred refresh
62
-
// The UI trigerred refresh needs to preceed with an event fired such that tree view would kick off a new promise getting all new root elements and would show progress while promise is being resolved.
61
+
// Serves 2 purposes: non UI triggered refresh as a result of the index update and a UI triggered refresh
62
+
// The UI triggered refresh needs to proceed with an event fired such that tree view would kick off a new promise getting all new root elements and would show progress while promise is being resolved.
63
63
// The index update typically would have a list of projects for which index has changed then the refresh can be silent with letting the tree know about new data once it is computed
64
-
// If the index update event doesn't have a list of project then this is an edge case for which we'd show the preogress and treat it like UI trigerred refresh
64
+
// If the index update event doesn't have a list of project then this is an edge case for which we'd show the preogress and treat it like UI triggered refresh
0 commit comments