Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkkirschner committed May 10, 2024
1 parent 3495aab commit 423ddc0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ exports[`LibraryContainer Test UI rendering of Library Item and child components
"contextData": "",
"description": "",
"expanded": false,
"fullyQualifiedName": "",
"hiddenInWorkspaceContext": false,
"iconUrl": "",
"itemType": "category",
Expand All @@ -31,7 +30,6 @@ exports[`LibraryContainer Test UI rendering of Library Item and child components
"contextData": "",
"description": "",
"expanded": false,
"fullyQualifiedName": "",
"hiddenInWorkspaceContext": false,
"iconUrl": "",
"itemType": "category",
Expand All @@ -49,7 +47,6 @@ exports[`LibraryContainer Test UI rendering of Library Item and child components
"contextData": "",
"description": "",
"expanded": false,
"fullyQualifiedName": "",
"hiddenInWorkspaceContext": false,
"iconUrl": "",
"itemType": "none",
Expand Down
2 changes: 0 additions & 2 deletions src/LibraryUtilities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ export class ItemData {
childItems: ItemData[] = [];
pathToItem: ItemData[] = [];
weight: number = 0;
fullyQualifiedName:string = ""
hiddenInWorkspaceContext:boolean = false

constructor(public text: string) {
Expand Down Expand Up @@ -123,7 +122,6 @@ export class ItemData {
this.keywords.push(keyword.toLowerCase().replace(/ /g, ''));
});
this.keywords.push(typeListNode.fullyQualifiedName.toLowerCase().replace(/ /g, ''));
this.fullyQualifiedName = typeListNode.fullyQualifiedName;
this.hiddenInWorkspaceContext = typeListNode.hiddenInWorkspaceContext;
}

Expand Down

0 comments on commit 423ddc0

Please sign in to comment.