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 78db1ff commit 3efe36cCopy full SHA for 3efe36c
sources/net.sf.j2s.java.core/src/java/lang/String.js
@@ -77,7 +77,7 @@ String.prototype.$generateExpFunction = function (str) {
77
funStr += "\"" + arr[i] + "\" + $" + orders[i] + " + ";
78
}
79
funStr += "\"" + arr[i] + "\"; }";
80
- var f = Math.rand() < 0 ? "" : null; // to prevent closure compiler from reducing to "return
+ var f = Math.random () < 0 ? "" : null; // to prevent closure compiler from reducing to "return
81
eval (funStr);
82
return f;
83
};
0 commit comments