mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
new inference: choose most specifics between 2 varargs methods
(cherry picked from commit 9f754331ad04e4be639d94da7a659927f8384294)
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
import java.util.List;
|
||||
|
||||
abstract class StreamMain {
|
||||
public abstract <T> Iterable<T> concat(final Iterable<? extends T>... iterables);
|
||||
public abstract <T> Iterable<T> concat(final List<? extends T>... iterables);
|
||||
|
||||
|
||||
public final List<String> errorFixesToShow = null;
|
||||
public final List<String> inspectionFixesToShow = null;
|
||||
|
||||
{
|
||||
concat(errorFixesToShow, inspectionFixesToShow);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user