diff --git a/__tests__/Snapshottest/__snapshots__/UIOutputComparisonTests.tsx.snap b/__tests__/Snapshottest/__snapshots__/UIOutputComparisonTests.tsx.snap index b50d96f..770efc9 100644 --- a/__tests__/Snapshottest/__snapshots__/UIOutputComparisonTests.tsx.snap +++ b/__tests__/Snapshottest/__snapshots__/UIOutputComparisonTests.tsx.snap @@ -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", @@ -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", @@ -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", diff --git a/src/LibraryUtilities.ts b/src/LibraryUtilities.ts index c00a53d..53d6b98 100644 --- a/src/LibraryUtilities.ts +++ b/src/LibraryUtilities.ts @@ -94,7 +94,6 @@ export class ItemData { childItems: ItemData[] = []; pathToItem: ItemData[] = []; weight: number = 0; - fullyQualifiedName:string = "" hiddenInWorkspaceContext:boolean = false constructor(public text: string) { @@ -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; }