mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Remove parent from sql project tree items (#21912)
* update getFileProjectEntry and getRelativePath * remove root and fix tests * remove parent from sql project tree items
This commit is contained in:
@@ -14,9 +14,8 @@ export abstract class BaseProjectTreeItem {
|
||||
* Constructor
|
||||
* @param relativeProjectUri Project-relative URI that's compatible with the project tree
|
||||
* @param projectFileUri Full URI to the .sqlproj of this project
|
||||
* @param parent parent tree item
|
||||
*/
|
||||
constructor(public relativeProjectUri: vscode.Uri, public projectFileUri: vscode.Uri, public parent?: BaseProjectTreeItem) { }
|
||||
constructor(public relativeProjectUri: vscode.Uri, public projectFileUri: vscode.Uri) { }
|
||||
|
||||
abstract get children(): BaseProjectTreeItem[];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user