Skip to content

Commit

Permalink
codereview :
Browse files Browse the repository at this point in the history
noticed incorrect constructor reference
  • Loading branch information
Curtis J Schofield committed Jun 7, 2010
1 parent 0d6864d commit 2405b9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/LedgerService.js
Expand Up @@ -26,7 +26,7 @@ LedgerService.prototype.halt_service = function() {
};

Method.POST = function(){};
Method.POST.constructor = LedgerService.prototype.POST;
Method.POST.constructor = Method.POST;
Method.POST.prototype = new Method;
Method.POST.prototype.init = function(request,response) {
var self = this;
Expand Down

0 comments on commit 2405b9a

Please sign in to comment.