Skip to content

Commit

Permalink
change constructor parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
nickredmark committed Feb 16, 2017
1 parent a9f2aa7 commit 2e845a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Etl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ export class Etl {
private _state: EtlState = EtlState.Stopped;
private _context: any = null;

public constructor(_context?: any) {
this.setContext(_context);
public constructor(context?: any) {
this.setContext(context);
}

public get extractors(): Extractor[] {
Expand Down

0 comments on commit 2e845a1

Please sign in to comment.