Skip to content

Commit

Permalink
Added some debugging info for profiling purposes.
Browse files Browse the repository at this point in the history
  • Loading branch information
emeryberger committed Aug 1, 2019
1 parent d420528 commit 99ea2dc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/colorize.js
Expand Up @@ -282,7 +282,7 @@ var Colorize = /** @class */ (function () {
var t = new timer_1.Timer("generate_proposed_fixes");
var proposed_fixes = [];
var already_proposed_pair = {};
if (false) {
if (true) {
var count = 0;
for (var _i = 0, _a = Object.keys(groups); _i < _a.length; _i++) {
var k1 = _a[_i];
Expand Down
2 changes: 1 addition & 1 deletion src/components/colorize.ts
Expand Up @@ -322,7 +322,7 @@ export class Colorize {
let proposed_fixes = [];
let already_proposed_pair = {};

if (false)
if (true)
{
let count = 0;
for (let k1 of Object.keys(groups)) {
Expand Down

0 comments on commit 99ea2dc

Please sign in to comment.