You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
Running build with jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.37' causes compilation failure due to missing shouldYield field in the org.openjdk.jmh.runner.InfraControl class.
Downgrading back to version 1.36 resolves the issue.
if (control.shouldYield) Thread.yield();
^
symbol: variable shouldYield
location: variable control of type InfraControl
To Reproduce
Steps to reproduce the behavior:
Upgrade to jmh-generator-annprocess:1.37
Run build
See the error mentioned above
The text was updated successfully, but these errors were encountered:
Describe the bug
Running build with
jmhAnnotationProcessor 'org.openjdk.jmh:jmh-generator-annprocess:1.37'
causes compilation failure due to missing shouldYield field in theorg.openjdk.jmh.runner.InfraControl
class.Downgrading back to version 1.36 resolves the issue.
To Reproduce
Steps to reproduce the behavior:
jmh-generator-annprocess:1.37
The text was updated successfully, but these errors were encountered: