mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 23:20:57 +07:00
14 lines
396 B
Java
14 lines
396 B
Java
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);
|
|
}
|
|
} |