Skip to content

Commit e98c601

Browse files
committed
fix(core): Make abstract constructor protected
Signed-off-by: Ingo Bürk <ingo.buerk@tngtech.com>
1 parent 5808d4a commit e98c601

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

projects/ngqp/core/src/lib/model/query-param.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export abstract class AbstractQueryParam<U, T> extends AbstractQueryParamBase<T>
8484
/** See {@link QueryParamOpts}. */
8585
public readonly combineWith?: ParamCombinator<T>;
8686

87-
constructor(urlParam: string, opts: QueryParamOptsBase<U, T> = {}) {
87+
protected constructor(urlParam: string, opts: QueryParamOptsBase<U, T> = {}) {
8888
super();
8989
const { serialize, deserialize, debounceTime, compareWith, emptyOn, combineWith } = opts;
9090

0 commit comments

Comments
 (0)