retrolambda icon indicating copy to clipboard operation
retrolambda copied to clipboard

Backport of Java 8's lambda expressions to Java 7, 6 and 5

Results 28 retrolambda issues
Sort by recently updated
recently updated
newest added

Preconditions: - Multi-module Maven build with retrolambda in multiple modules. - retrolambda-maven-plugin with fork=false - JDK 8, tested with various versions, my most recent test used Oracle JDK 1.8.0_281-b09. If...

When I compile my project I get the following warning: mvn clean install -T6 [WARNING] ***************************************************************** [WARNING] * Your build is requesting parallel execution, but project * [WARNING] * contains...

Added new retrolambda.jars and retrolambda.jarsFile properties. Processed jar files will be included along-side existing class files. The goal of this is it make it easier to process libraries.

* Automatically Replaces classes and calls to specific static methods with calls to equivalent backported classes/methods * Reads configuration from a mapping file, can be used with guava or stream...

such as : first compile Fragment.lambda$new$150(android.view.View) second compile Fragment.lambda$new$126(android.view.View) the lambda method name has changed

This is actually a problem of processing proguarded jars on a case-insensitive filesystem (OSX, Windows, etc) and working with android Typical build process that I do on android when using...

enhancement

This is a freak issue I encountered during development of a certain android app. This works: ``` return new BeaconScanner( // CODE CUT new BeaconScannerListener() { @Override public void onBeaconFound(@NotNull...

Proguard reports error for each lambda usage: can't find referenced class java.lang.invoke.MethodHandles$Lookup can't find referenced class java.lang.invoke.MethodHandles It is an android application. Looking at this line here, I wonder should...

It would be extraordinarily useful if retrolambda spit out a warning if java.util.function.* functions or other known backwords-incompatible code is found. This could be configurable to either not show warnings...