Skip to content

Commit d88a90b

Browse files
author
Loïc Mangeonjean
committed
fix: remove non functioning condition
1 parent 72a7949 commit d88a90b

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

src/service-override/assignment.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@ class AssignmentService implements IWorkbenchAssignmentService {
2727
@IConfigurationService private configurationService: IConfigurationService,
2828
@IEnvironmentService environmentService: IEnvironmentService
2929
) {
30-
this.experimentsEnabled =
31-
!environmentService.disableExperiments &&
32-
!environmentService.extensionTestsLocationURI &&
33-
configurationService.getValue('workbench.enableExperiments') === true
30+
this.experimentsEnabled = !environmentService.disableExperiments
3431
}
3532

3633
async getCurrentExperiments(): Promise<string[] | undefined> {

0 commit comments

Comments
 (0)