From 423ddc00f4012f0cbd77014b35d8c52cb923cd18 Mon Sep 17 00:00:00 2001 From: mjkkirschner Date: Fri, 10 May 2024 14:01:34 -0400 Subject: [PATCH] remove unused --- .../__snapshots__/UIOutputComparisonTests.tsx.snap | 3 --- src/LibraryUtilities.ts | 2 -- 2 files changed, 5 deletions(-) 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; }