Files
kotlin-fork/j2k/testData/multiFile/FunctionalInterfaceAcceptor/external/Acceptor.java
T
Simon Ogorodnik 0cebcc9f3c Fix for KT-12677. J2K: Invalid SAM constructor redundancy detection
Now all J2kPostProcessing's executing in fixed order, dependent on it index in J2kPostProcessingRegistrar._processings
2016-10-27 20:02:20 +03:00

8 lines
204 B
Java
Vendored

package test;
public class Acceptor {
private Face face;
public Face getFace() { return face; }
public void setFace(Face face) { this.face = face; }
public void acceptFace(Face face) {}
}