Closed shbonita closed 6 years ago
Display.getDefault().asyncExec(new Runnable(){ public void run(){ for (ISolver solver : activeSolvers) { solver.process(response); } } });
For example, new Runnable() and all the code after it is considered a call by .asyncExec and none of the AOIs inside of it are tracked separately.
Need to make sure all variations of anonymous class uses are tracked correctly: https://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html
Closed. Will open in new infrastructure.
For example, new Runnable() and all the code after it is considered a call by .asyncExec and none of the AOIs inside of it are tracked separately.