Skip to content

Commit

Permalink
Fix indentation and other insanity.
Browse files Browse the repository at this point in the history
  • Loading branch information
zefhemel committed Jun 4, 2012
1 parent f2efa51 commit 5d1af0a
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions plugins-server/cloud9.ide.revisions/revisions.js
Expand Up @@ -212,17 +212,17 @@ require("util").inherits(RevisionsPlugin, Plugin);
function (next) { function (next) {
var line = lines[lineCount]; var line = lines[lineCount];
if (line) { if (line) {
try { try {
var revision = JSON.parse(lines[lineCount]); var revision = JSON.parse(line);
revObj[revision.ts] = revision; revObj[revision.ts] = revision;
} }
catch(e) { catch(e) {
error = e; error = e;
} }
} }
lineCount++; lineCount++;
next(); next();
}, },
function (e) { function (e) {
callback(error, revObj); callback(error, revObj);
} }
Expand Down

0 comments on commit 5d1af0a

Please sign in to comment.