Fix worthless indentation.

This commit is contained in:
Chad Weider 2012-05-28 17:46:14 -07:00
parent 70fe1a7451
commit b0d71df604
1 changed files with 6 additions and 6 deletions

View File

@ -200,9 +200,9 @@ exports.getPackages = function (cb) {
flatten(tmp);
cb(null, packages);
});
};
};
exports.loadPlugin = function (packages, plugin_name, plugins, parts, cb) {
exports.loadPlugin = function (packages, plugin_name, plugins, parts, cb) {
var plugin_path = path.resolve(packages[plugin_name].path, "ep.json");
fs.readFile(
plugin_path,
@ -226,7 +226,7 @@ exports.getPackages = function (cb) {
cb();
}
);
};
};
exports.partsToParentChildList = function (parts) {
var res = [];