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 214b471 commit c7c5999Copy full SHA for c7c5999
sources/net.sf.j2s.java.core/src/java/lang/Class.java
@@ -1,4 +1,5 @@
1
/*
2
+
3
* Copyright 1994-2006 Sun Microsystems, Inc. All Rights Reserved.
4
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5
*
@@ -664,7 +665,7 @@ private String getName0() {
664
665
* code = this.$clazz$.__CLASS_NAME$__ ||
666
* this.$clazz$.__CLASS_NAME__;
667
- * if (code) return code;
668
+ * if (code) return (code.indexOf(".") < 0 ? "java.lang." + code : code);
669
670
* code = this.$clazz$.__PARAMCODE;
671
0 commit comments