This commit is contained in:
Sandeep Somavarapu 2021-11-09 08:45:23 +01:00
parent 0c240a6ca1
commit 89862489b1
No known key found for this signature in database
GPG key ID: 1FED25EC4646638B
3 changed files with 8 additions and 8 deletions

View file

@ -24,7 +24,7 @@ class ExtensionResourceLoaderService extends AbstractExtensionResourceLoaderServ
@IProductService productService: IProductService,
@IEnvironmentService environmentService: IEnvironmentService,
@IConfigurationService configurationService: IConfigurationService,
@ILogService readonly _logService: ILogService,
@ILogService private readonly _logService: ILogService,
) {
super(fileService, storageService, productService, environmentService, configurationService);
}

View file

@ -33,7 +33,7 @@ export interface IExtensionResourceLoaderService {
/**
* Returns whether the gallery provides extension resources.
*/
supportsExtensionGalleryResources: boolean;
readonly supportsExtensionGalleryResources: boolean;
/**
* Computes the URL of a extension gallery resource. Returns `undefined` if gallery does not provide extension resources.
@ -50,11 +50,11 @@ export abstract class AbstractExtensionResourceLoaderService implements IExtensi
private readonly _extensionGalleryAuthority: string | undefined;
constructor(
readonly _fileService: IFileService,
readonly _storageService: IStorageService,
readonly _productService: IProductService,
readonly _environmentService: IEnvironmentService,
readonly _configurationService: IConfigurationService,
protected readonly _fileService: IFileService,
private readonly _storageService: IStorageService,
private readonly _productService: IProductService,
private readonly _environmentService: IEnvironmentService,
private readonly _configurationService: IConfigurationService,
) {
if (_productService.extensionsGallery) {
this._extensionGalleryResourceUrlTemplate = _productService.extensionsGallery.resourceUrlTemplate;

View file

@ -22,7 +22,7 @@ export class ExtensionResourceLoaderService extends AbstractExtensionResourceLoa
@IProductService productService: IProductService,
@IEnvironmentService environmentService: IEnvironmentService,
@IConfigurationService configurationService: IConfigurationService,
@IRequestService readonly _requestService: IRequestService,
@IRequestService private readonly _requestService: IRequestService,
) {
super(fileService, storageService, productService, environmentService, configurationService);
}