Skip to content

Commit

Permalink
trim unused class member
Browse files Browse the repository at this point in the history
  • Loading branch information
yaacovCR committed Mar 21, 2022
1 parent 3f4d149 commit e6770c3
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/execution/bundler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ export class Bundler<TDataResult, TErrorResult, TDataContext, TErrorContext>
implements IBundler<TDataResult, TErrorResult>
{
private _maxBundleSize: number;
private _maxInterval: Maybe<number>;
private _createDataBundleContext: (
index: number,
result: TDataResult,
Expand Down Expand Up @@ -102,7 +101,6 @@ export class Bundler<TDataResult, TErrorResult, TDataContext, TErrorContext>
onErrorBundle,
}: BundlerOptions<TDataResult, TErrorResult, TDataContext, TErrorContext>) {
this._maxBundleSize = maxBundleSize;
this._maxInterval = maxInterval;
this._createDataBundleContext = createDataBundleContext;
this._createErrorBundleContext = createErrorBundleContext;
this._onSubsequentData = onSubsequentData;
Expand Down

0 comments on commit e6770c3

Please sign in to comment.