ronmamo / reflections

Java runtime metadata analysis
Do What The F*ck You Want To Public License
4.71k stars 700 forks source link

Lambda expressions #244

Open cabeen opened 6 years ago

cabeen commented 6 years ago

It seems that using lambda expressions is breaking some things. For example, if I add this to a class:

Runnable breaking = () -> {};

then it won't be found when using something like reflections.getSubTypesOf(Object.class)

cabeen commented 6 years ago

Looks like updating javassist to version 3.22.0 GA fixes this! Thanks for the tip from:

https://github.com/ronmamo/reflections/issues/150#issuecomment-348549645