Skip to content

Commit c9b4b7e

Browse files
committed
Merge branch 'master' into feature/angular
2 parents ff4544c + 0f11ea8 commit c9b4b7e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/templates/core/BaseHttpRequest.hbs

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,7 @@ import type { OpenAPIConfig } from './OpenAPI';
66

77
export class BaseHttpRequest {
88

9-
protected readonly config: OpenAPIConfig;
10-
11-
constructor(config: OpenAPIConfig) {
12-
this.config = config;
13-
}
9+
constructor(protected readonly config: OpenAPIConfig) {}
1410

1511
public request<T>(options: ApiRequestOptions): CancelablePromise<T> {
1612
throw new Error('Not Implemented');

0 commit comments

Comments
 (0)