df533053f9
It was already working in JPS, because it see our synthetic classes as subclasses for SAM's, but with non-JPS build we have to manually tracking places that should be recompiled after SAM members are changed
5 lines
112 B
Java
Vendored
5 lines
112 B
Java
Vendored
public class JavaClass {
|
|
public void foo(SamInterface s) {}
|
|
public static void bar(SamInterface s) {}
|
|
}
|