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

As far as I know, the only reason default/static methods in interfaces isn't enabled by default is because it has to process the interface and the implementations together not allowing...

I ran into the following problem while trying to "retrolambdify" my code. ``` Error! Failed to run Retrolambda java.lang.IndexOutOfBoundsException: Index: 0, Size: 0 at java.util.ArrayList.rangeCheck(ArrayList.java:653) at java.util.ArrayList.get(ArrayList.java:429) at net.orfjackal.retrolambda.asm.tree.MethodNode.visitTryCatchAnnotation(MethodNode.java:550) at...

When java 8 code uses reflection the class ReflectiveOperationException doesn't get backported to java 6. Causing a NoClassDefFoundError because all reflection exceptions derive from it since java 7. Would it...

enhancement

I have a default method in an interface, and I tried to call it explicitly from the same method in the implementing class and it is generating an exception: ```...

Let's have an interface in a stand alone project. The compiled classes can be found (let's say) under target/lib . The source is as follows: ``` java package test; public...

enhancement

When running my application on an Android 4.4 Emulator, but DEX seems to reject some of the generated code which leads to the App crashing when the relevant parts get...

bug

Converting this class causes a Deque full exception. The addition of the field DISCARD causes the problem. public interface X { static X DISCARD = t -> {}; void accept(T...

bug

Is it possible to integrate with shade maven plugin ? like transformer class?

enhancement