blob: ab32bcd6af7645e37db94f34dda4e8832663a16d [file] [log] [blame]
import org.checkerframework.checker.nullness.qual.Nullable;
public class NoStubSecond {
public static void one(
NoStubFirst.Supplier<Integer> supplier, NoStubFirst.Callable<@Nullable Object> callable) {
NoStubFirst.method(supplier, callable);
}
public static void two(
NoStubFirst.Supplier<Integer> supplier, NoStubFirst.Callable<Object> callable) {
NoStubFirst.method(supplier, callable);
}
}