mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 12:14:37 +07:00
11 lines
215 B
Java
11 lines
215 B
Java
import com.google.common.collect.FluentIterable;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
public class Main20 {
|
|
|
|
void get() {
|
|
FluentIterable<String> i = FluentIterable.f<caret>rom(new ArrayList<String>()).cycle();
|
|
}
|
|
|
|
} |