Skip to content

Commit 1ee9c14

Browse files
committed
upd
1 parent 5dfe4ca commit 1ee9c14

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/main/java/oscript/data/JavaClassWrapper.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -102,15 +102,11 @@ public JavaClassWrapper(Class javaClass) {
102102
public synchronized void init() {
103103
if (impl == null) {
104104
String name = javaClass.getName();
105-
106-
System.err.println(">>> JavaClassWrapper ::: " + name);
107-
108105
if (name != null) // TeaVM target may be null ? TODO ?
109106
this.id = Symbol.getSymbol(name).getId();
110107
impl = new JavaClassWrapperImpl(javaClass);
111108
}
112109
}
113-
114110
/* ======================================================================= */
115111
/**
116112
* Get the type of this object. The returned type doesn't have to take into

0 commit comments

Comments
 (0)