Skip to content

Commit

Permalink
let => const
Browse files Browse the repository at this point in the history
  • Loading branch information
Tommos0 committed Mar 5, 2019
1 parent 7cb509e commit f4f1c8a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/ProvenanceGraphTraverser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,9 +137,8 @@ export class ProvenanceGraphTraverser implements IProvenanceGraphTraverser {
throw new Error('No path to target node found in graph');
}

let functionsToDo: ActionFunctionWithThis[],
argumentsToDo: any[],
transitionTimes: number[] = [];
let functionsToDo: ActionFunctionWithThis[], argumentsToDo: any[];
const transitionTimes: number[] = [];
try {
const arg = this.getFunctionsAndArgsFromTrack(trackToTarget);
functionsToDo = arg.functionsToDo;
Expand Down

0 comments on commit f4f1c8a

Please sign in to comment.