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 5dfe4ca commit 1ee9c14Copy full SHA for 1ee9c14
src/main/java/oscript/data/JavaClassWrapper.java
@@ -102,15 +102,11 @@ public JavaClassWrapper(Class javaClass) {
102
public synchronized void init() {
103
if (impl == null) {
104
String name = javaClass.getName();
105
-
106
- System.err.println(">>> JavaClassWrapper ::: " + name);
107
108
if (name != null) // TeaVM target may be null ? TODO ?
109
this.id = Symbol.getSymbol(name).getId();
110
impl = new JavaClassWrapperImpl(javaClass);
111
}
112
113
114
/* ======================================================================= */
115
/**
116
* Get the type of this object. The returned type doesn't have to take into
0 commit comments