Skip to content
This repository has been archived by the owner on Feb 14, 2018. It is now read-only.

Commit

Permalink
remove some extraneous 'throw's used for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
Russell Haering committed Mar 13, 2011
1 parent 27b01f8 commit cb86345
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion lib/cast-client/entry.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ exports.run = function() {
p.parse(process.ARGV);
}
catch (error) {
throw error;
sys.puts(error.toString());
}
});
Expand Down
1 change: 0 additions & 1 deletion lib/manifest/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,6 @@ exports.validateManifest = function(manifestPath, callback) {
if (type === 'array') {
validators.validateArray(manifestObject[field], validatorName, options, function(error) {
if (error) {
throw error;
callback(new InvalidFieldError(field, error.message));
return;
}
Expand Down

0 comments on commit cb86345

Please sign in to comment.