Skip to content

Commit 29d6323

Browse files
committed
code-smell: TT-316 remove comments and unnecessary variable assignments
1 parent a4d5745 commit 29d6323

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/app/modules/shared/components/sidebar/sidebar.component.spec.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ describe('SidebarComponent', () => {
1212
let component: SidebarComponent;
1313
let fixture: ComponentFixture<SidebarComponent>;
1414
let azureAdB2CServiceStubInjected;
15-
let featureManagerServiceStubInjected: FeatureManagerService;
1615
let userInfoService: UserInfoService;
1716
let router;
1817
const routes: Routes = [{ path: 'time-clock', component: TimeClockComponent }];
@@ -47,7 +46,6 @@ describe('SidebarComponent', () => {
4746
beforeEach(() => {
4847
fixture = TestBed.createComponent(SidebarComponent);
4948
azureAdB2CServiceStubInjected = TestBed.inject(AzureAdB2CService);
50-
featureManagerServiceStubInjected = TestBed.inject(FeatureManagerService);
5149
userInfoService = TestBed.inject(UserInfoService);
5250
component = fixture.componentInstance;
5351
fixture.detectChanges();

src/app/modules/shared/components/sidebar/sidebar.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ export class SidebarComponent implements OnInit, OnDestroy {
2929
ngOnInit(): void {
3030
this.toggleSideBar();
3131
this.sidebarItems$ = this.getSidebarItems().subscribe();
32-
// this.toggleListTechnologies(this.itemsSidebar);
3332
this.highlightMenuOption(this.router.routerState.snapshot.url);
3433
this.navStart.subscribe((evt) => {
3534
this.highlightMenuOption(evt.url);

0 commit comments

Comments
 (0)