Skip to content

Commit

Permalink
Remove debug code and cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter East committed Aug 30, 2018
1 parent 46c8c94 commit c0d9d42
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
4 changes: 0 additions & 4 deletions src/aggregator/relationship-map.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,6 @@ const generate_relationship_graph = (event_defs: any[]) => {
// I probably don't have to generate this intermediate tree,
// the purpose of it is to help me think through the search strategy
// Actually, it might be useful as it'll remove problems caused by graph cycles??
//
// TODO: Redefine this algorithm - see TODO in index.ts
const generate_relationship_tree = (
start_point: string,
event_relationships: Map<string, string[]>,
Expand Down Expand Up @@ -158,8 +156,6 @@ const relationship_map_navigator = (
[],
);

console.log('path', merge_dependencies(paths));

return merge_dependencies(paths);
};
};
Expand Down
2 changes: 0 additions & 2 deletions src/query/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ export const query_builder: QueryBuilder = {
this,
);

console.log("OUTPUT:", output);
return output;
} else {
return condition_chain_builder.create(this);
Expand All @@ -66,7 +65,6 @@ const condition_chain_builder: ConditionChainBuilder = {
condition_chain: {
parent: undefined,
key(item: string) {
console.log(item);
return ConditionBuilder.create(this.parent, item);
},
and() {
Expand Down

0 comments on commit c0d9d42

Please sign in to comment.