Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Nov 9, 2021
1 parent 0c240a6 commit 8986248
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 8986248

Please sign in to comment.