We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa6f867 commit ccfa753Copy full SHA for ccfa753
sources/net.sf.j2s.java.core/src/java/lang/ClassLoader.js
@@ -1845,7 +1845,13 @@ ClazzLoader.runtimeLoaded = function () {
1845
for (var i = 0; i < qbs.length; i++) {
1846
ClazzLoader.loadClass (qbs[i][0], qbs[i][1]);
1847
}
1848
- ClazzLoader.runtimeLoaded = function () {};
+ /*
1849
+ * Should not set to empty function! Some later package may need this
1850
+ * runtimeLoaded function. For example, lazily loading SWT package may
1851
+ * require this runtimeLoaded function.
1852
+ * -- zhou renjian @ Dec 17, 2006
1853
+ */
1854
+ // ClazzLoader.runtimeLoaded = function () {};
1855
};
1856
1857
/*
0 commit comments