jOOQ / jOOR

jOOR - Fluent Reflection in Java jOOR is a very simple fluent API that gives access to your Java Class structures in a more intuitive way. The JDK's reflection APIs are hard and verbose to use. Other languages have much simpler constructs to access type meta information at runtime. Let us make Java reflection better.
http://www.jooq.org/products
Apache License 2.0
2.81k stars 376 forks source link

Removed MethodHandles import from Java-6. #38

Closed simonracz closed 7 years ago

simonracz commented 7 years ago

I removed an unused import from the Java-6 part of the repo. This makes it work on Android.

By the way, Android O will support MethodHandles

lukaseder commented 7 years ago

Thank you very much. You're perfectly right.

lukaseder commented 7 years ago

The import is excluded by replacement in our jOOQ API preprocessor. We want to keep the exact same line numbers, regardless of the distribution...

Thanks again!