mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 12:03:57 +07:00
GitOrigin-RevId: 1cfc8afb26b5db175d865f6bbdc752356040d8bb
14 lines
310 B
Java
14 lines
310 B
Java
// "Make 'PrivateMethodRef.filter()' package-private" "true"
|
|
import java.util.function.Predicate;
|
|
|
|
class PrivateMethodRef {
|
|
static boolean filter(final String s) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
class Some {
|
|
public static void main(String[] args) {
|
|
Predicate<String> filter2 = PrivateMethodRef::filter;
|
|
}
|
|
} |