We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82d287f commit 7135995Copy full SHA for 7135995
sources/net.sf.j2s.java.core/src/java/lang/Class.js
@@ -1060,7 +1060,7 @@ Clazz.formatParameters = function (funParams) {
1060
* If funParams is Array, funParams.toString() will
1061
* also return "*,*,..." string.
1062
*/
1063
- var s = funParams.toString ();
+ var s = funParams; //.toString (); // Google Chrome v8native.js error
1064
s = s.replace (/~([NABSO])/g, function ($0, $1) {
1065
if ($1 == 'N') {
1066
return "Number";
0 commit comments