Alfred Xiao
Alfred Xiao
I am seeing the same issue with version 3.25.0-GA. The logic inside detach is ``` CtClass obj = cp.removeCached(this.getName()); if (obj != this) { cp.cacheCtClass(this.getName(), obj, false); } ``` I...
My project has the same problem. my code inside main() has finished running, but thread dump shows there is a threading issue. ``` java.lang.Thread.State: WAITING (on object monitor) at java.lang.Object.wait(Native...
There is a parameter you can set that allows logs to be written to a file, I think it is something like logFile=/path/to/mylog.log. Bare in mind that the log file...
You are right and mMy bad, I misunderstood the issue. That is a good idea and would require some changes to the code, I will work on it and hopefully...