mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 20:39:40 +07:00
11 lines
251 B
Java
11 lines
251 B
Java
import java.util.List;
|
|
|
|
public class LiveTemplateTest {
|
|
|
|
void foo(String... messages){}
|
|
void usage(){
|
|
List<String> messages = new ArrayList<String>();
|
|
foo(messages.toArray(new <selection>String<caret></selection>[messages.size()]));
|
|
}
|
|
|
|
} |