diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-03 16:40:01 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-03 16:40:01 +0000 |
commit | 11894ea5ef3c72c072bbe4c3e24f5678002ba8df (patch) | |
tree | 033ad6cfd135517d54d6d70f4cfa64e9887a8922 /sca-cpp | |
parent | 034b527d25626a4812fc696c3878744695c23a0b (diff) |
Add missing return statement in proxy function.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1030526 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp')
-rw-r--r-- | sca-cpp/trunk/modules/server/htdocs/js/ref.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sca-cpp/trunk/modules/server/htdocs/js/ref.js b/sca-cpp/trunk/modules/server/htdocs/js/ref.js index b7daf40b48..95a84c01a5 100644 --- a/sca-cpp/trunk/modules/server/htdocs/js/ref.js +++ b/sca-cpp/trunk/modules/server/htdocs/js/ref.js @@ -561,7 +561,7 @@ function defun(ref) { args[0] = name; for (i = 0, n = arguments.length; i < n; i++) args[i + 1] = arguments[i]; - this.apply.apply(this, args); + return this.apply.apply(this, args); }; } |